/*--------------------------------------------------------------
# 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: "Poppins", 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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1b1b1b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2eca6a; /* 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: #444444; /* The default color of the main navmenu links */
  --nav-hover-color: #000000; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2eca6a; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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: var(--heading-color);
  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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
.header .logo h1 span {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .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;
  }
}
/* Mobile Navigation */
@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;
  }
  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .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);
    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
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}
.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer .address p {
  margin-bottom: 0px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}
.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}
.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}
.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.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: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  padding: 0;
}
.hero-3 .blog-hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-3 .blog-hero-item {
  position: relative;
  height: 80vh;
  min-height: 600px;
}
.hero-3 .blog-hero-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-3 .blog-hero-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.hero-3 .blog-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 60px;
  color: var(--contrast-color);
  text-align: center;
  max-width: 800px;
  width: 100%;
}
.hero-3 .blog-hero-content .category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-3 .blog-hero-content h1 {
  color: var(--contrast-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .hero-3 .blog-hero-content h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero-3 .blog-hero-content h1 {
    font-size: 28px;
  }
}
.hero-3 .blog-hero-content .meta {
  margin-bottom: 30px;
  font-size: 14px;
}
.hero-3 .blog-hero-content .meta span {
  display: inline-block;
  margin-right: 20px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}
.hero-3 .blog-hero-content .meta span:last-child {
  margin-right: 0;
}
.hero-3 .blog-hero-content .meta span a {
  color: var(--contrast-color);
  font-weight: 600;
}
.hero-3 .blog-hero-content .meta span a:hover {
  color: var(--accent-color);
}
@media (max-width: 767px) {
  .hero-3 .blog-hero-content .meta span {
    display: block;
    margin: 0 0 10px 0;
  }
}
.hero-3 .blog-hero-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
}
.hero-3 .blog-hero-content .read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.hero-3 .blog-hero-content .read-more:hover {
  color: var(--accent-color);
}
.hero-3 .blog-hero-content .read-more:hover i {
  transform: translateX(5px);
}
@media (max-width: 767px) {
  .hero-3 .blog-hero-content {
    padding: 30px;
  }
}
.hero-3 .swiper-button-prev,
.hero-3 .swiper-button-next {
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
}
.hero-3 .swiper-button-prev::after,
.hero-3 .swiper-button-next::after {
  font-size: 32px;
}
.hero-3 .swiper-button-prev:hover,
.hero-3 .swiper-button-next:hover {
  color: var(--accent-color);
}
.hero-3 .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  position: relative;
  overflow: hidden;
}
.about-2::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 992px) {
  .about-2::before {
    display: none;
  }
}
.about-2 .content-wrapper {
  position: relative;
  z-index: 1;
}
.about-2 .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}
.about-2 .content-wrapper .section-badge i {
  font-size: 18px;
}
.about-2 .content-wrapper h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .about-2 .content-wrapper h2 {
    font-size: 36px;
  }
}
.about-2 .content-wrapper .lead {
  font-size: 18px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-2 .content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 35px;
}
.about-2 .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .about-2 .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.about-2 .stats-grid .stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.about-2 .stats-grid .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.about-2 .stats-grid .stat-card .stat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  flex-shrink: 0;
}
.about-2 .stats-grid .stat-card .stat-icon i {
  font-size: 24px;
  color: var(--accent-color);
}
.about-2 .stats-grid .stat-card .stat-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
}
.about-2 .stats-grid .stat-card .stat-content p {
  font-size: 14px;
  margin: 5px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.about-2 .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.about-2 .cta-buttons .btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.about-2 .cta-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.about-2 .cta-buttons .btn-outline {
  display: inline-block;
  padding: 15px 35px;
  background: transparent;
  color: var(--heading-color);
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  text-decoration: none;
  transition: 0.3s;
}
.about-2 .cta-buttons .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}
.about-2 .image-composition {
  position: relative;
}
.about-2 .image-composition .image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 600px;
}
@media (max-width: 992px) {
  .about-2 .image-composition .image-grid {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .about-2 .image-composition .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 150px 150px;
    height: auto;
  }
}
.about-2 .image-composition .image-grid .grid-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.about-2 .image-composition .image-grid .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.about-2 .image-composition .image-grid .grid-item:hover img {
  transform: scale(1.05);
}
.about-2 .image-composition .image-grid .grid-item.large {
  grid-row: 1/3;
}
@media (max-width: 576px) {
  .about-2 .image-composition .image-grid .grid-item.large {
    grid-row: 1/2;
  }
}
.about-2 .image-composition .image-grid .grid-item.small-top {
  grid-row: 1/2;
}
@media (max-width: 576px) {
  .about-2 .image-composition .image-grid .grid-item.small-top {
    grid-row: 2/3;
  }
}
.about-2 .image-composition .image-grid .grid-item.small-bottom {
  grid-row: 2/3;
}
@media (max-width: 576px) {
  .about-2 .image-composition .image-grid .grid-item.small-bottom {
    grid-row: 3/4;
  }
}
.about-2 .image-composition .image-grid .grid-item .overlay-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  backdrop-filter: blur(10px);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}
.about-2 .image-composition .image-grid .grid-item .overlay-badge i {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  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;
  -o-object-fit: cover;
     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: var(--accent-color);
  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, var(--accent-color), color-mix(in srgb, var(--accent-color), 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: var(--accent-color);
  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: var(--accent-color);
}
.why-us .content-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
.why-us .content-wrapper .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  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, var(--accent-color), color-mix(in srgb, var(--accent-color), 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: var(--heading-color);
}
.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.why-us .content-wrapper .achievement-highlights {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  background: var(--surface-color);
  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: var(--accent-color);
  margin-bottom: 5px;
}
.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  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: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  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 var(--accent-color);
  color: var(--accent-color);
  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;
  }
}

.cards-2 .container-fluid {
  padding: 0;
}
.cards-2 .cards-slider {
  overflow: hidden;
}
.cards-2 .swiper-wrapper {
  height: auto !important;
  transition-timing-function: linear !important;
}
.cards-2 .card-item {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.cards-2 .card-item:hover .card-bg {
  transform: scale(1.1);
}
.cards-2 .card-item:hover .card-content {
  background: rgba(0, 0, 0, 0.7);
}
.cards-2 .card-item .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}
.cards-2 .card-item .card-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease-in-out;
}
.cards-2 .card-item:hover .card-bg::before {
  background: rgba(0, 0, 0, 0.2);
}
.cards-2 .card-item .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease-in-out;
  gap: 20px;
}
.cards-2 .card-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}
.cards-2 .card-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .cards-2 .card-item {
    height: 350px;
  }
  .cards-2 .card-item .card-content {
    padding: 25px;
  }
  .cards-2 .card-item .icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .cards-2 .card-item h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .cards-2 .card-item {
    height: 300px;
  }
  .cards-2 .card-item .card-content {
    padding: 20px;
  }
  .cards-2 .card-item .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .cards-2 .card-item h3 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}
.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }
  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Agents Section
--------------------------------------------------------------*/
.agents .member {
  position: relative;
}
.agents .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}
.agents .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}
.agents .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}
.agents .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}
.agents .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.agents .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.agents .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.agents .member .social a:hover {
  color: var(--accent-color);
}
.agents .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}
.about .content .read-more:hover i {
  margin-left: 10px;
}
.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: var(--surface-color);
  border-radius: 8px;
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.stats .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.stats .stat-card .stat-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border-radius: 50%;
}
.stats .stat-card .stat-icon i {
  font-size: 24px;
  color: var(--accent-color);
}
.stats .stat-card .stat-content span {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}
.stats .stat-card .stat-content p {
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 0;
  margin-top: 4px;
}
@media (max-width: 575px) {
  .stats .stat-card {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  --default-color: #555;
  --heading-color: #333;
}
.features .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}
.features .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.features .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.features .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}
.features .feature-box.orange {
  background-color: #fff3e2;
}
.features .feature-box.orange i {
  color: #edb86e;
}
.features .feature-box.blue {
  background-color: #deedfd;
}
.features .feature-box.blue i {
  color: #20a5f8;
}
.features .feature-box.green {
  background-color: #d5f1e4;
}
.features .feature-box.green i {
  color: #48c88a;
}
.features .feature-box.red {
  background-color: #fdeded;
}
.features .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--accent-color);
  height: 100%;
  padding: 20px;
}
.contact .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}
.contact .info-item:last-child {
  margin-bottom: 0;
}
.contact .info-item i {
  font-size: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact .info-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .info-item:hover i {
  background: var(--contrast-color);
  color: var(--accent-color);
}
.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  padding: 30px;
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type=text]::-moz-placeholder, .contact .php-email-form input[type=email]::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Real Estate Section
--------------------------------------------------------------*/
.real-estate .property-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.real-estate .property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.real-estate .property-card .property-image {
  position: relative;
  overflow: hidden;
}
.real-estate .property-card .property-image img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.real-estate .property-card .property-image:hover img {
  transform: scale(1.05);
}
.real-estate .property-card .property-image .property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.real-estate .property-card .property-image .property-badge.available {
  background-color: #28a745;
}
.real-estate .property-card .property-image .property-badge.reserved {
  background-color: #0141b9;
}
.real-estate .property-card .property-image .property-badge.sold {
  background-color: #ee0202;
}
.real-estate .property-card .property-image .property-badge.rented {
  background-color: #ff6b35;
}
.real-estate .property-card .property-image .property-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.real-estate .property-card .property-details {
  padding: 25px;
}
.real-estate .property-card .property-details h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
.real-estate .property-card .property-details h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.real-estate .property-card .property-details h3 a:hover {
  color: var(--accent-color);
}
.real-estate .property-card .property-details .property-location {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.real-estate .property-card .property-details .property-location i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 14px;
}
.real-estate .property-card .property-details .property-location span {
  font-size: 14px;
  font-weight: 500;
}
.real-estate .property-card .property-details .property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.real-estate .property-card .property-details .property-specs .spec-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.real-estate .property-card .property-details .property-specs .spec-item i {
  color: var(--accent-color);
  margin-right: 6px;
  font-size: 12px;
}
.real-estate .property-card .property-details p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
}
.real-estate .property-card .property-details .property-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.real-estate .property-card .property-details .property-actions .btn {
  background-color: var(--accent-color);
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.real-estate .property-card .property-details .property-actions .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}
.real-estate .property-card .property-details .property-actions .property-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.real-estate .property-card .property-details .property-actions .property-meta .property-type {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.real-estate .property-card .property-details .property-actions .property-meta .property-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
@media (max-width: 768px) {
  .real-estate .property-card .property-details {
    padding: 20px;
  }
  .real-estate .property-card .property-details .property-specs {
    justify-content: space-between;
  }
  .real-estate .property-card .property-details .property-actions {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .real-estate .property-card .property-details .property-actions .property-meta {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}
.pagination-2 .pagination-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pagination-2 .page-info {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  letter-spacing: 0.5px;
}
.pagination-2 .page-info strong {
  color: var(--accent-color);
  font-weight: 700;
}
.pagination-2 .pagination-track {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
  padding: 6px;
}
.pagination-2 .nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--default-color);
  background-color: var(--surface-color);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 88%);
}
.pagination-2 .nav-arrow i {
  font-size: 16px;
  line-height: 1;
}
.pagination-2 .nav-arrow:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.08);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.pagination-2 .page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 4px;
}
.pagination-2 .page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.pagination-2 .page-num.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 55%);
  transform: scale(1.1);
}
.pagination-2 .page-num:hover:not(.active) {
  background-color: var(--surface-color);
  color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 2px 6px color-mix(in srgb, var(--default-color), transparent 88%);
}
.pagination-2 .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 16px;
}
.pagination-2 .jump-to {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.pagination-2 .jump-to input {
  width: 52px;
  height: 34px;
  text-align: center;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  background-color: var(--surface-color);
  outline: none;
  transition: border-color 0.3s ease;
  -moz-appearance: textfield;
}
.pagination-2 .jump-to input::-webkit-outer-spin-button, .pagination-2 .jump-to input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pagination-2 .jump-to input:focus {
  border-color: var(--accent-color);
}
.pagination-2 .jump-to .jump-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}
.pagination-2 .jump-to .jump-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px color-mix(in srgb, var(--accent-color), transparent 60%);
}
@media (max-width: 576px) {
  .pagination-2 .pagination-track {
    gap: 2px;
    padding: 4px;
  }
  .pagination-2 .nav-arrow {
    width: 36px;
    height: 36px;
  }
  .pagination-2 .nav-arrow i {
    font-size: 14px;
  }
  .pagination-2 .page-numbers {
    gap: 2px;
    padding: 0 2px;
  }
  .pagination-2 .page-num,
  .pagination-2 .dots {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .pagination-2 .jump-to {
    gap: 8px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Real Estate 2 Section
--------------------------------------------------------------*/
.real-estate-2 .property-hero .hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-wrapper {
  height: auto !important;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-image {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.3));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px;
  z-index: 5;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge.available {
  background-color: #28a745;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge.reserved {
  background-color: #0141b9;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge.sold {
  background-color: #ee0202;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge.rented {
  background-color: #ff6b35;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .featured-badge {
  background: #860180;
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn i {
  font-size: 20px;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn:hover {
  background: var(--surface-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-next,
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  margin-top: -22.5px;
  z-index: 10;
  color: var(--accent-color);
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:after,
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 700;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:hover,
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:hover {
  transform: scale(1.1);
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-next {
  right: 20px;
  transition: 0.3s;
}
.real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
  left: 20px;
  transition: 0.3s;
}
.real-estate-2 .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-wrapper {
  height: auto !important;
}
.real-estate-2 .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img {
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}
.real-estate-2 .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img:hover {
  transform: scale(1.05);
}
.real-estate-2 .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide {
  position: relative;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.real-estate-2 .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.real-estate-2 .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide.swiper-slide-thumb-active .thumbnail-img {
  border-color: var(--accent-color);
}
.real-estate-2 .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide .photo-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
}
.real-estate-2 .property-info .property-header .property-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.2;
}
.real-estate-2 .property-info .property-header .property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}
.real-estate-2 .property-info .property-header .property-meta .address {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
}
.real-estate-2 .property-info .property-header .property-meta .address i {
  color: var(--accent-color);
  margin-right: 8px;
}
.real-estate-2 .property-info .property-header .property-meta .listing-id {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
}
.real-estate-2 .property-info .pricing-section {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.real-estate-2 .property-info .pricing-section .main-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
  margin-bottom: 10px;
}
.real-estate-2 .property-info .pricing-section .main-price .period {
  font-size: 24px;
  font-weight: 400;
  opacity: 0.9;
}
.real-estate-2 .property-info .pricing-section .price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.real-estate-2 .property-info .pricing-section .price-breakdown span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.real-estate-2 .property-info .pricing-section .price-breakdown .available {
  font-weight: 600;
}
.real-estate-2 .property-info .quick-stats .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}
.real-estate-2 .property-info .quick-stats .stat-grid .stat-card {
  background: var(--surface-color);
  padding: 20px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.real-estate-2 .property-info .quick-stats .stat-grid .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.real-estate-2 .property-info .quick-stats .stat-grid .stat-card .stat-icon {
  margin-bottom: 10px;
}
.real-estate-2 .property-info .quick-stats .stat-grid .stat-card .stat-icon i {
  font-size: 24px;
  color: var(--accent-color);
}
.real-estate-2 .property-info .quick-stats .stat-grid .stat-card .stat-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.real-estate-2 .property-info .quick-stats .stat-grid .stat-card .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.real-estate-2 .property-details h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}
.real-estate-2 .property-details p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}
.real-estate-2 .property-details .features-grid h5 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 600;
}
.real-estate-2 .property-details .features-grid .feature-list {
  list-style: none;
  padding: 0;
}
.real-estate-2 .property-details .features-grid .feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.real-estate-2 .property-details .features-grid .feature-list li:last-child {
  border-bottom: none;
}
.real-estate-2 .property-details .features-grid .feature-list li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}
.real-estate-2 .floor-plan-section h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}
.real-estate-2 .floor-plan-section .floor-plan-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.real-estate-2 .floor-plan-section .floor-plan-card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.real-estate-2 .floor-plan-section .floor-plan-card .plan-details {
  padding: 25px;
}
.real-estate-2 .floor-plan-section .floor-plan-card .plan-details h5 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 600;
}
.real-estate-2 .floor-plan-section .floor-plan-card .plan-details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}
.real-estate-2 .sticky-sidebar {
  position: sticky;
  top: 100px;
}
.real-estate-2 .sticky-sidebar .actions-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.real-estate-2 .sticky-sidebar .actions-card .btn {
  font-weight: 600;
  border-radius: 12px;
  padding: 15px 20px;
}
.real-estate-2 .sticky-sidebar .actions-card .btn.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
}
.real-estate-2 .sticky-sidebar .actions-card .btn.btn-primary i {
  margin-right: 8px;
}
.real-estate-2 .sticky-sidebar .actions-card .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.real-estate-2 .sticky-sidebar .actions-card .btn.btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.real-estate-2 .sticky-sidebar .agent-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.real-estate-2 .sticky-sidebar .agent-card .agent-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-header .agent-avatar {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-header .agent-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-header .agent-avatar .online-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  background: #28a745;
  border: 3px solid var(--surface-color);
  border-radius: 50%;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-header .agent-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-header .agent-info .agent-role {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 10px;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .stars {
  margin-bottom: 5px;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .stars i {
  color: #ffc107;
  margin-right: 2px;
  font-size: 14px;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .rating-text {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.real-estate-2 .sticky-sidebar .agent-card .agent-contact {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 15px;
  margin-bottom: 15px;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-contact .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-contact .contact-item i {
  color: var(--accent-color);
  margin-right: 10px;
  width: 16px;
}
.real-estate-2 .sticky-sidebar .agent-card .agent-contact .contact-item span {
  font-size: 14px;
  color: var(--default-color);
}
.real-estate-2 .sticky-sidebar .agent-card .btn {
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 20px;
}
.real-estate-2 .sticky-sidebar .agent-card .btn i {
  margin-right: 8px;
}
.real-estate-2 .sticky-sidebar .agent-card .btn.btn-success {
  background: #28a745;
  border-color: #28a745;
}
.real-estate-2 .sticky-sidebar .agent-card .btn.btn-outline {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.real-estate-2 .sticky-sidebar .agent-card .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.real-estate-2 .sticky-sidebar .contact-form-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.real-estate-2 .sticky-sidebar .contact-form-card h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.real-estate-2 .sticky-sidebar .contact-form-card .form-control,
.real-estate-2 .sticky-sidebar .contact-form-card .form-select {
  color: var(--default-color);
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 12px;
  padding: 15px;
}
.real-estate-2 .sticky-sidebar .contact-form-card .form-control:focus,
.real-estate-2 .sticky-sidebar .contact-form-card .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}
.real-estate-2 .sticky-sidebar .contact-form-card .form-control::-moz-placeholder, .real-estate-2 .sticky-sidebar .contact-form-card .form-select::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.real-estate-2 .sticky-sidebar .contact-form-card .form-control::placeholder,
.real-estate-2 .sticky-sidebar .contact-form-card .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.real-estate-2 .sticky-sidebar .contact-form-card .btn {
  background: var(--accent-color);
  border-color: var(--accent-color);
  font-weight: 600;
  border-radius: 12px;
  padding: 15px 20px;
}
.real-estate-2 .sticky-sidebar .calculator-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.real-estate-2 .sticky-sidebar .calculator-card h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.real-estate-2 .sticky-sidebar .calculator-card .cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.real-estate-2 .sticky-sidebar .calculator-card .cost-item:last-of-type {
  border-bottom: none;
}
.real-estate-2 .sticky-sidebar .calculator-card .cost-item .cost-label {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
}
.real-estate-2 .sticky-sidebar .calculator-card .cost-item .cost-value {
  color: var(--heading-color);
  font-weight: 600;
}
.real-estate-2 .sticky-sidebar .calculator-card .total-cost {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 12px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.real-estate-2 .sticky-sidebar .calculator-card .total-cost .total-label {
  color: var(--heading-color);
  font-weight: 600;
}
.real-estate-2 .sticky-sidebar .calculator-card .total-cost .total-value {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 700;
}
.real-estate-2 .sticky-sidebar .similar-properties h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.real-estate-2 .sticky-sidebar .similar-properties .similar-property-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.real-estate-2 .sticky-sidebar .similar-properties .similar-property-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.real-estate-2 .sticky-sidebar .similar-properties .similar-property-item img {
  width: 80px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-right: 15px;
  flex-shrink: 0;
}
.real-estate-2 .sticky-sidebar .similar-properties .similar-property-item .similar-info h6 {
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}
.real-estate-2 .sticky-sidebar .similar-properties .similar-property-item .similar-info .similar-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
}
.real-estate-2 .sticky-sidebar .similar-properties .similar-property-item .similar-info .similar-specs {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 12px;
  margin: 0;
}
.real-estate-2 .location-section h3 {
  color: var(--heading-color);
  margin-bottom: 30px;
  font-weight: 600;
}
.real-estate-2 .location-section .map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.real-estate-2 .location-section .map-wrapper iframe {
  filter: grayscale(10%);
}
.real-estate-2 .location-section .neighborhood-info h5 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.real-estate-2 .location-section .neighborhood-info .poi-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.real-estate-2 .location-section .neighborhood-info .poi-item:last-child {
  border-bottom: none;
}
.real-estate-2 .location-section .neighborhood-info .poi-item i {
  color: var(--accent-color);
  margin-right: 15px;
  width: 20px;
  text-align: center;
  font-size: 18px;
}
.real-estate-2 .location-section .neighborhood-info .poi-item .poi-content {
  display: flex;
  flex-direction: column;
}
.real-estate-2 .location-section .neighborhood-info .poi-item .poi-content .poi-name {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 3px;
}
.real-estate-2 .location-section .neighborhood-info .poi-item .poi-content .poi-distance {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
}
@media (max-width: 992px) {
  .real-estate-2 .sticky-sidebar {
    position: static;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-next,
  .real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
  }
  .real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:after,
  .real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:after {
    font-size: 14px;
  }
  .real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-next {
    right: 10px;
  }
  .real-estate-2 .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
    left: 10px;
  }
  .real-estate-2 .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img {
    height: 60px;
  }
  .real-estate-2 .property-info .property-header .property-title {
    font-size: 28px;
  }
  .real-estate-2 .property-info .property-header .property-meta {
    flex-direction: column;
    gap: 10px;
  }
  .real-estate-2 .property-info .pricing-section .main-price {
    font-size: 36px;
  }
  .real-estate-2 .property-info .quick-stats .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .real-estate-2 .property-info .quick-stats .stat-grid .stat-card {
    padding: 15px 10px;
  }
  .real-estate-2 .similar-properties .similar-property-item {
    flex-direction: column;
    text-align: center;
  }
  .real-estate-2 .similar-properties .similar-property-item img {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    height: 120px;
  }
}

.view-pdf-section {
  position: relative;
  padding: 100px 0;
  isolation: isolate;
}
.view-pdf-section .container {
  position: relative;
}
.view-pdf-section h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.view-pdf-section .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}
.view-pdf-section .btn {
  padding: 12px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.view-pdf-section .btn:hover {
  transform: translateY(-2px);
}
.view-pdf-section .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}
.view-pdf-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.view-pdf-section .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.view-pdf-section .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.view-pdf-section .scribble {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}
.view-pdf-section .scribble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
}
.view-pdf-section .scribble-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: 5%;
  animation-delay: 0s;
}
.view-pdf-section .scribble-1::before {
  clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
}
.view-pdf-section .scribble-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}
.view-pdf-section .scribble-2::before {
  clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
}
.view-pdf-section .scribble-3 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: 15%;
  animation-delay: -4s;
}
.view-pdf-section .scribble-3::before {
  clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@media (max-width: 768px) {
  .view-pdf-section {
    padding: 60px 0;
  }
  .view-pdf-section h2 {
    font-size: 2.5rem;
  }
  .view-pdf-section .lead {
    font-size: 1.1rem;
  }
  .view-pdf-section .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  .view-pdf-section .scribble {
    transform: scale(0.7);
  }
}

.error-404 {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}
.error-404::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
}
.error-404 .error-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
}
.error-404 .error-visual .error-code {
  display: flex;
  align-items: center;
  gap: 8px;
}
.error-404 .error-visual .error-code .digit {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
  line-height: 1;
}
.error-404 .error-visual .error-code .digit.middle {
  color: var(--accent-color);
}
.error-404 .error-visual .error-code .digit.middle i {
  font-size: clamp(70px, 14vw, 140px);
}
.error-404 .error-visual .error-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.error-404 .error-visual .error-decoration .circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--accent-color), transparent 70%);
  animation: rotate 20s linear infinite;
}
.error-404 .error-visual .error-decoration .circle.circle-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.error-404 .error-visual .error-decoration .circle.circle-2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation-direction: reverse;
  animation-duration: 15s;
}
.error-404 .error-visual .error-decoration .circle.circle-3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  animation-duration: 25s;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.error-404 .error-content .error-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  border-radius: 24px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.error-404 .error-content .error-heading {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
}
.error-404 .error-content .error-text {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
  max-width: 480px;
}
.error-404 .error-content .action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.error-404 .error-content .action-buttons .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}
.error-404 .error-content .action-buttons .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateX(-4px);
}
.error-404 .error-content .action-buttons .btn-home i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.error-404 .error-content .action-buttons .btn-home:hover i {
  transform: translateX(-4px);
}
.error-404 .error-content .action-buttons .btn-report {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 75%);
}
.error-404 .error-content .action-buttons .btn-report:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.error-404 .error-content .action-buttons .btn-report i {
  font-size: 16px;
}
.error-404 .quick-navigation {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.error-404 .quick-navigation .nav-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 32px;
  text-align: center;
}
.error-404 .quick-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .error-404 .quick-navigation .nav-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .error-404 .quick-navigation .nav-links {
    grid-template-columns: 1fr;
  }
}
.error-404 .quick-navigation .nav-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: var(--background-color);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.error-404 .quick-navigation .nav-link-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 92%);
}
.error-404 .quick-navigation .nav-link-item:hover .icon-wrap {
  background-color: var(--accent-color);
}
.error-404 .quick-navigation .nav-link-item:hover .icon-wrap i {
  color: var(--contrast-color);
}
.error-404 .quick-navigation .nav-link-item .icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.error-404 .quick-navigation .nav-link-item .icon-wrap i {
  font-size: 22px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.error-404 .quick-navigation .nav-link-item .link-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.error-404 .quick-navigation .nav-link-item .link-content .link-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
}
.error-404 .quick-navigation .nav-link-item .link-content .link-desc {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
@media (max-width: 992px) {
  .error-404 {
    padding: 80px 0;
  }
  .error-404 .error-visual {
    padding: 32px;
    margin-bottom: 32px;
  }
  .error-404 .error-content {
    text-align: center;
  }
  .error-404 .error-content .error-text {
    margin-left: auto;
    margin-right: auto;
  }
  .error-404 .error-content .action-buttons {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .error-404 .quick-navigation {
    padding: 24px;
  }
  .error-404 .error-content .action-buttons {
    flex-direction: column;
    width: 100%;
  }
  .error-404 .error-content .action-buttons .btn-home,
  .error-404 .error-content .action-buttons .btn-report {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=main.css.map */