/*
Theme Name:        Live Algarve
Author:            Crochet
Version:           1.0
Summary:
1. Base
2. Header
3. Contact Bar Block
4. Hero Slider
5. Text and Image Section
6. Insights Section
7. Exclusive Properties Section
8. Testimonial Section
9. Latest News Section
10. Recently Sold Section
11. FAQ Section
12. Property Collection Section
13. Newsletter Section
14. Footer
15. Article Page
16. Listing Property Section
17. More Property Section
18. Single Property Page
*/

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
:root {
  --bs-primary: #31425c;
  --bs-secondary: #1794dd;
  --bs-gray: #eee;
  --bs-gray-secondary: #C8CCCF;
  --bs-gray-tertiary: #B6B9BE;
  --ff-opacity: 0.65;
  --ff-primary: "Sahar";
  --ff-secondary: "Futura PT";
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--bs-primary);
  font-family: "Futura PT";
  line-height: 1.4;
}

/**
   * Basic styles for headings
   */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Sahar";
  margin: 0 0 30px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--bs-primary);
  clear: both;
}

.sub-title {
  font-size: 32px;
}

.font-primary{
  font-family: var(--ff-primary);
}

.font-secondary{
  font-family: var(--ff-secondary);
}

.font-opacity{
  opacity: var(--ff-opacity);
}

h1,
.h1 {
  font-size: 5rem;
}

h2,
.h2 {
  font-size: 3.4rem;
}

h3,
.h3 {
  font-size: 2.6rem;
}

h4,
.h4 {
  font-size: 2rem;
}

h5,
.h5 {
  font-size: 1.6rem;
}

h6,
.h6 {
  font-size: 1.4rem;
}

p {
  margin: 1.5em 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted var(--bs-primary);
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

.bg-white {
  background-color: #FFF !important;
}

.bg-gray {
  background-color: var(--bs-gray) !important;
}

/* Containers
  --------------------------------------------- */
/**
   * Main content containers
   * 1. Make the container full-width with a maximum width
   * 2. Center it in the viewport
   * 3. Leave some space on the edges, especially valuable on small screens
   */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.container> :first-child {
  margin-top: 0;
}

.container> :last-child {
  margin-bottom: 0;
}

@media (min-width: 36em) {
  .container {
    padding: 6rem 5rem;
  }
}

@media (min-width: 48em) {
  .container {
    padding: 6rem 5rem;
  }
}

@media (min-width: 64em) {
  .container {
    padding: 6rem 5rem;
  }
}

@media (min-width: 80em) {
  .container {
    padding: 6rem 5rem;
  }
}

/* Elements
  --------------------------------------------- */
body {
  background: #fff;
  padding: 0;
}

@media (max-width: 1150px) {
  body.mobile-menu--open {
    overflow: hidden;
  }
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li>ul,
li>ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
  --------------------------------------------- */
a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

a:hover,
a:focus,
a:active {
  color: inherit;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

.link-underline {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: inherit;
  padding-bottom: 0;
  border-bottom: 1px solid var(--bs-primary);
  transition: all 0.3s ease;
}

.link-underline:hover {
  color: var(--bs-secondary);
  border-bottom-color: var(--bs-secondary);
}

/* Forms
  --------------------------------------------- */
.btn,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  position: relative;
  display: inline-block;
  min-width: 10rem;
  padding: 0.7rem 1.25rem;
  border-width: 0;
  border-radius: 0;
  background-color: var(--bs-primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.btn:active,
.btn.active,
.btn:focus,
.btn.focus,
.btn:active:hover,
.btn.active:hover,
.btn:active:focus,
.btn.active:focus,
.btn.focus:active,
.btn.active.focus,
.btn:hover,
input[type="button"]:active,
input[type="button"].active,
input[type="button"]:focus,
input[type="button"].focus,
input[type="button"]:active:hover,
input[type="button"].active:hover,
input[type="button"]:active:focus,
input[type="button"].active:focus,
input[type="button"].focus:active,
input[type="button"].active.focus,
input[type="button"]:hover,
input[type="reset"]:active,
input[type="reset"].active,
input[type="reset"]:focus,
input[type="reset"].focus,
input[type="reset"]:active:hover,
input[type="reset"].active:hover,
input[type="reset"]:active:focus,
input[type="reset"].active:focus,
input[type="reset"].focus:active,
input[type="reset"].active.focus,
input[type="reset"]:hover,
input[type="submit"]:active,
input[type="submit"].active,
input[type="submit"]:focus,
input[type="submit"].focus,
input[type="submit"]:active:hover,
input[type="submit"].active:hover,
input[type="submit"]:active:focus,
input[type="submit"].active:focus,
input[type="submit"].focus:active,
input[type="submit"].active.focus,
input[type="submit"]:hover {
  background-color: var(--bs-primary);
  border-color: none;
  color: #fff;
}

.btn:visited,
input[type="button"]:visited,
input[type="reset"]:visited,
input[type="submit"]:visited {
  color: #fff;
}

.btn.btn--link,
input[type="button"].btn--link,
input[type="reset"].btn--link,
input[type="submit"].btn--link {
  min-width: auto;
  padding: 0.8rem 0;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
}

.btn.btn--link::after,
input[type="button"].btn--link::after,
input[type="reset"].btn--link::after,
input[type="submit"].btn--link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn.btn--link:active,
.btn.btn--link.active,
.btn.btn--link:focus,
.btn.btn--link.focus,
.btn.btn--link:active:hover,
.btn.btn--link.active:hover,
.btn.btn--link:active:focus,
.btn.btn--link.active:focus,
.btn.btn--link.focus:active,
.btn.btn--link.active.focus,
.btn.btn--link:hover,
input[type="button"].btn--link:active,
input[type="button"].btn--link.active,
input[type="button"].btn--link:focus,
input[type="button"].btn--link.focus,
input[type="button"].btn--link:active:hover,
input[type="button"].btn--link.active:hover,
input[type="button"].btn--link:active:focus,
input[type="button"].btn--link.active:focus,
input[type="button"].btn--link.focus:active,
input[type="button"].btn--link.active.focus,
input[type="button"].btn--link:hover,
input[type="reset"].btn--link:active,
input[type="reset"].btn--link.active,
input[type="reset"].btn--link:focus,
input[type="reset"].btn--link.focus,
input[type="reset"].btn--link:active:hover,
input[type="reset"].btn--link.active:hover,
input[type="reset"].btn--link:active:focus,
input[type="reset"].btn--link.active:focus,
input[type="reset"].btn--link.focus:active,
input[type="reset"].btn--link.active.focus,
input[type="reset"].btn--link:hover,
input[type="submit"].btn--link:active,
input[type="submit"].btn--link.active,
input[type="submit"].btn--link:focus,
input[type="submit"].btn--link.focus,
input[type="submit"].btn--link:active:hover,
input[type="submit"].btn--link.active:hover,
input[type="submit"].btn--link:active:focus,
input[type="submit"].btn--link.active:focus,
input[type="submit"].btn--link.focus:active,
input[type="submit"].btn--link.active.focus,
input[type="submit"].btn--link:hover {
  color: #fff;
}

.btn.btn--link:active::after,
.btn.btn--link.active::after,
.btn.btn--link:focus::after,
.btn.btn--link.focus::after,
.btn.btn--link:active:hover::after,
.btn.btn--link.active:hover::after,
.btn.btn--link:active:focus::after,
.btn.btn--link.active:focus::after,
.btn.btn--link.focus:active::after,
.btn.btn--link.active.focus::after,
.btn.btn--link:hover::after,
input[type="button"].btn--link:active::after,
input[type="button"].btn--link.active::after,
input[type="button"].btn--link:focus::after,
input[type="button"].btn--link.focus::after,
input[type="button"].btn--link:active:hover::after,
input[type="button"].btn--link.active:hover::after,
input[type="button"].btn--link:active:focus::after,
input[type="button"].btn--link.active:focus::after,
input[type="button"].btn--link.focus:active::after,
input[type="button"].btn--link.active.focus::after,
input[type="button"].btn--link:hover::after,
input[type="reset"].btn--link:active::after,
input[type="reset"].btn--link.active::after,
input[type="reset"].btn--link:focus::after,
input[type="reset"].btn--link.focus::after,
input[type="reset"].btn--link:active:hover::after,
input[type="reset"].btn--link.active:hover::after,
input[type="reset"].btn--link:active:focus::after,
input[type="reset"].btn--link.active:focus::after,
input[type="reset"].btn--link.focus:active::after,
input[type="reset"].btn--link.active.focus::after,
input[type="reset"].btn--link:hover::after,
input[type="submit"].btn--link:active::after,
input[type="submit"].btn--link.active::after,
input[type="submit"].btn--link:focus::after,
input[type="submit"].btn--link.focus::after,
input[type="submit"].btn--link:active:hover::after,
input[type="submit"].btn--link.active:hover::after,
input[type="submit"].btn--link:active:focus::after,
input[type="submit"].btn--link.active:focus::after,
input[type="submit"].btn--link.focus:active::after,
input[type="submit"].btn--link.active.focus::after,
input[type="submit"].btn--link:hover::after {
  width: 10px;
  background-color: #fff;
}

.btn.btn--link-xl,
input[type="button"].btn--link-xl,
input[type="reset"].btn--link-xl,
input[type="submit"].btn--link-xl {
  font-size: 1.4rem;
}

.btn.btn--solid,
input[type="button"].btn--solid,
input[type="reset"].btn--solid,
input[type="submit"].btn--solid {
  background-color: #333333;
}

.btn.btn--solid:active,
.btn.btn--solid.active,
.btn.btn--solid:focus,
.btn.btn--solid.focus,
.btn.btn--solid:active:hover,
.btn.btn--solid.active:hover,
.btn.btn--solid:active:focus,
.btn.btn--solid.active:focus,
.btn.btn--solid.focus:active,
.btn.btn--solid.active.focus,
.btn.btn--solid:hover,
input[type="button"].btn--solid:active,
input[type="button"].btn--solid.active,
input[type="button"].btn--solid:focus,
input[type="button"].btn--solid.focus,
input[type="button"].btn--solid:active:hover,
input[type="button"].btn--solid.active:hover,
input[type="button"].btn--solid:active:focus,
input[type="button"].btn--solid.active:focus,
input[type="button"].btn--solid.focus:active,
input[type="button"].btn--solid.active.focus,
input[type="button"].btn--solid:hover,
input[type="reset"].btn--solid:active,
input[type="reset"].btn--solid.active,
input[type="reset"].btn--solid:focus,
input[type="reset"].btn--solid.focus,
input[type="reset"].btn--solid:active:hover,
input[type="reset"].btn--solid.active:hover,
input[type="reset"].btn--solid:active:focus,
input[type="reset"].btn--solid.active:focus,
input[type="reset"].btn--solid.focus:active,
input[type="reset"].btn--solid.active.focus,
input[type="reset"].btn--solid:hover,
input[type="submit"].btn--solid:active,
input[type="submit"].btn--solid.active,
input[type="submit"].btn--solid:focus,
input[type="submit"].btn--solid.focus,
input[type="submit"].btn--solid:active:hover,
input[type="submit"].btn--solid.active:hover,
input[type="submit"].btn--solid:active:focus,
input[type="submit"].btn--solid.active:focus,
input[type="submit"].btn--solid.focus:active,
input[type="submit"].btn--solid.active.focus,
input[type="submit"].btn--solid:hover {
  background-color: var(--bs-primary);
  border-color: none;
  color: #fff;
}

.btn.btn--outline,
input[type="button"].btn--outline,
input[type="reset"].btn--outline,
input[type="submit"].btn--outline {
  background-color: transparent;
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
}

.btn-white.btn--outline {
  border-color: #fff;
  color: #fff;
}

.btn.btn--outline:active,
.btn.btn--outline.active,
.btn.btn--outline:focus,
.btn.btn--outline.focus,
.btn.btn--outline:active:hover,
.btn.btn--outline.active:hover,
.btn.btn--outline:active:focus,
.btn.btn--outline.active:focus,
.btn.btn--outline.focus:active,
.btn.btn--outline.active.focus,
.btn.btn--outline:hover,
input[type="button"].btn--outline:active,
input[type="button"].btn--outline.active,
input[type="button"].btn--outline:focus,
input[type="button"].btn--outline.focus,
input[type="button"].btn--outline:active:hover,
input[type="button"].btn--outline.active:hover,
input[type="button"].btn--outline:active:focus,
input[type="button"].btn--outline.active:focus,
input[type="button"].btn--outline.focus:active,
input[type="button"].btn--outline.active.focus,
input[type="button"].btn--outline:hover,
input[type="reset"].btn--outline:active,
input[type="reset"].btn--outline.active,
input[type="reset"].btn--outline:focus,
input[type="reset"].btn--outline.focus,
input[type="reset"].btn--outline:active:hover,
input[type="reset"].btn--outline.active:hover,
input[type="reset"].btn--outline:active:focus,
input[type="reset"].btn--outline.active:focus,
input[type="reset"].btn--outline.focus:active,
input[type="reset"].btn--outline.active.focus,
input[type="reset"].btn--outline:hover,
input[type="submit"].btn--outline:active,
input[type="submit"].btn--outline.active,
input[type="submit"].btn--outline:focus,
input[type="submit"].btn--outline.focus,
input[type="submit"].btn--outline:active:hover,
input[type="submit"].btn--outline.active:hover,
input[type="submit"].btn--outline:active:focus,
input[type="submit"].btn--outline.active:focus,
input[type="submit"].btn--outline.focus:active,
input[type="submit"].btn--outline.active.focus,
input[type="submit"].btn--outline:hover {
  background-color: var(--bs-primary);
  border-color: none;
  color: #fff;
}

.btn-white.btn--outline:hover {
  border-color: var(--bs-primary);
}

.btn.btn--xl,
input[type="button"].btn--xl,
input[type="reset"].btn--xl,
input[type="submit"].btn--xl {
  padding: 2rem 5rem;
  font-size: 1.4rem;
  border-radius: 3rem;
}

.btn-underline {
  position: relative;
  text-decoration: none;
  color: var(--bs-primary);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-underline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bs-primary);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-underline:hover::after {
  width: 100%;
}

.btn-underline:hover {
  color: var(--bs-primary);
  transform: translateY(-1px);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

label {
  line-height: 1.4;
  display: block;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
  width: 100%;
  color: #333333;
  outline-color: #333333 !important;
  /* border: 1px solid $color__border-input; */
  border: solid #333333;
  /* border-width: 0 0 2px 0; */
  border-width: 0;
  /* border-radius: 3px; */
  padding: 1rem 2rem;
  font-size: 1.3rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}

input[type="text"]:focus,
input[type="text"]:focus-visible,
input[type="email"]:focus,
input[type="email"]:focus-visible,
input[type="url"]:focus,
input[type="url"]:focus-visible,
input[type="password"]:focus,
input[type="password"]:focus-visible,
input[type="search"]:focus,
input[type="search"]:focus-visible,
input[type="number"]:focus,
input[type="number"]:focus-visible,
input[type="tel"]:focus,
input[type="tel"]:focus-visible,
input[type="range"]:focus,
input[type="range"]:focus-visible,
input[type="date"]:focus,
input[type="date"]:focus-visible,
input[type="month"]:focus,
input[type="month"]:focus-visible,
input[type="week"]:focus,
input[type="week"]:focus-visible,
input[type="time"]:focus,
input[type="time"]:focus-visible,
input[type="datetime"]:focus,
input[type="datetime"]:focus-visible,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:focus-visible,
input[type="color"]:focus,
input[type="color"]:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
  background-color: white;
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

select {
  border: 1px solid var(--bs-primary);
}

textarea {
  width: 100%;
  resize: vertical;
}

p,
span,
a,
button,
.lead {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
}

/*Slider*/
.owl-carousel {
  display: block;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
  left: 30px;
}

.owl-nav button.owl-next {
  right: 30px;
}

.owl-dots {
  text-align: center;
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.owl-dots button.owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: #fff;
  margin: 0 3px;
}

.owl-dots button.owl-dot.active {
  width: 15px;
  height: 15px;
  background-color: #fff;
}

.owl-dots button.owl-dot:focus {
  outline: none;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}


/*--------------------------------------------------------------
# 2. Header
--------------------------------------------------------------*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 30px 0;
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.header__logo {
  color: white;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Menu Toggle (Mobile) */
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
  position: relative;
  width: 40px;
  height: 40px;
  background: #00000029;
}

/* Hamburger Icon CSS */
.hamburger {
  display: block;
  position: relative;
  width: 20px;
  height: 14px;
  margin: auto;
}

.hamburger span {
  display: block;
  height: 1px;
  width: 100%;
  background: white;
  border-radius: 1px;
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 6px;
}

.hamburger span:nth-child(3) {
  top: 12px;
}

.header {
  transition: top 0.6s ease-in-out;
  background-color: 0.5s ease !important;
  box-shadow: 0.6s ease !important;
}
.header.header-bg {
  background-color: #fff;
  color: var(--bs-primary);
  position: fixed;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header.header-hidden {
  top: -200px;
}
.header-bg .header__content {
  flex-direction: row;
  justify-content: space-between;
}

.header-bg .header__logo svg path {
  fill: var(--bs-primary) !important;
}
.header-bg .hamburger span {
  background: var(--bs-primary);
}
@media (min-width: 1025px) {
  .header-bg .header__menu a {
    color: var(--bs-primary) !important;
  }
}

/* Hamburger to X animation */
.header__nav.active~.header__menu-toggle .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 6px;
}

.header__nav.active~.header__menu-toggle .hamburger span:nth-child(2) {
  opacity: 0;
}

.header__nav.active~.header__menu-toggle .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 6px;
}

/* Navigation */
.header__nav {
  position: relative;
}

.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu>li {
  position: relative;
}

.header__menu-item {
  display: block;
  color: white !important;
  text-decoration: none;
  padding: 10px 20px;
  transition: all 0.3s ease;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
}

.header__menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bs-primary);
}

/* Submenu Styles - Desktop */
.header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1001;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu>li:hover .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__submenu-item {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 15px 20px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.header__submenu-item:last-child {
  border-bottom: none;
}

.header__submenu-item:hover {
  background: #f8f9fa;
  color: var(--bs-primary);
  padding-left: 25px;
}

/* Dropdown Arrow CSS */
.has-submenu {
  display: flex;
  align-items: center;
}

.has-submenu::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 8px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0.999999L7 7L13 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  vertical-align: middle;
}


.header__menu>li:hover .has-submenu::after {
  transform: rotate(180deg);
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .header__menu-toggle {
    display: block;
  }

  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bs-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .header__nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__menu {
    flex-direction: column;
    padding: 90px 0;
  }

  .header__menu>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__menu>li:last-child {
    border-bottom: none;
  }

  .header__menu-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .has-submenu::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: auto;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
  }

  .submenu-open .has-submenu::after {
    transform: rotate(180deg);
  }

  /* Mobile Submenu */
  .header__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    margin: 0;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .submenu-open .header__submenu {
    max-height: 300px;
  }

  .header__submenu-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    display: block;
  }

  .header__submenu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 45px;
  }
}

/*--------------------------------------------------------------
# 3. Contact Bar Block
--------------------------------------------------------------*/

.contact-bar {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
}

.contact-bar--visible {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.contact-bar__container {
  background: var(--bs-primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 1rem 2rem;
}

/* Contact Bar List */
.contact-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.contact-bar__item {
  margin: 0;
  position: relative;
}

.contact-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  border-right: 1px solid #fff;
}

.contact-bar__link {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  display: block;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
}

.contact-bar__link:hover {
  color: #fff;
  opacity: 0.7;
}

.contact-bar__icon {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-bar__text {
    display: none;
  }

  .contact-bar__icon {
    display: inline-block;
  }

  .contact-bar__link {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-bar__item:not(:last-child)::after {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .contact-bar__container {
    padding: 0.75rem 1rem;
  }

  .contact-bar__link {
    padding: 0.5rem 1.2rem;
  }

  .contact-bar {
    left: 10px;
    right: 10px;
    transform: none;
    width: calc(100% - 20px);
  }

  .contact-bar--visible {
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .contact-bar__link {
    padding: 0.5rem 1rem;
  }

  .contact-bar__container {
    padding: 0.5rem;
  }
}

/* Animation for entrance */
@keyframes slideUpBounce {
  0% {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
  }

  60% {
    transform: translateX(-50%) translateY(-10px);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@keyframes slideUpBounceResponsive {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  60% {
    transform: translateY(-10px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.contact-bar--animated {
  animation: slideUpBounce 0.6s ease-out;
}

@media (max-width: 768px) {
  .contact-bar--animated {
    animation: slideUpBounceResponsive 0.6s ease-out;
  }
}

/*--------------------------------------------------------------
# 4. Hero Slider
--------------------------------------------------------------*/
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.hero__slider .item {
  position: relative;
  height: 100vh;
  width: 100%;
}

.hero__slider .owl-nav {
  display: none;
}

.hero__slider .owl-dots {
  position: absolute;
  bottom: 60px;
  right: 60px;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide-image,
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  height: 100vh;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.6) 100%);
}

.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 10;
  text-align: center;
  padding: 0 40px;
}

.hero__title {
  font-size: 54px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 1px;
  max-width: 600px;
}

/* Bottom Section */
.hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0 auto;
}

.hero__bottom-content {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero__ref {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  bottom: -90px;
  left: 30px;
}

.hero__ref span {
  color: #928f8f;
}

/* Pagination */
.hero__pagination {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero__buttons a{
  margin: 0 0.45rem;
}

/* Search Bar */
.hero__search {
  flex: 1;
  background: white;
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 25px;
  max-width: 978px;
}

.hero__search-select {
  flex: 1;
  height: 50px;
  border: none;
  padding: 0 20px;
  font-size: 14px;
  color: var(--text-dark);
  background: transparent;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 40px;
  border-right: 1px solid #e0e0e0;
}

.hero__search-select:last-of-type {
  border-right: none;
}

.hero__search-button {
  background: var(--primary-blue);
  color: white;
  border: none;
  height: 50px;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__search-button:hover {
  background: var(--dark-blue);
}

/* Block: property-search */
.property-search {
  background: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 0;
}

/* Element: property-search__form */
.property-search__form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: end;
}

/* Element: property-search__field */
.property-search__field {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

/* Element: property-search__label */
.property-search__label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--bs-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Element: property-search__select */
.property-search__select {
  background: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--bs-primary);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.property-search__select:focus {
  background-color: white;
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Element: property-search__input */
.property-search__input {
  background: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 1rem !important;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.property-search__input:focus {
  outline: none;
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(73, 80, 87, 0.25);
}

.property-search__input::placeholder {
  color: #adb5bd;
  font-style: italic;
}

/* Element: property-search__button */
.property-search__button {
  background: var(--bs-primary);
  border: none;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 120px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.property-search__button:hover {
  background: var(--bs-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.property-search__button:active {
  transform: translateY(0);
}

/* Modifier: property-search__button--secondary */
.property-search__button--secondary {
  background: var(--bs-primary);
  color: white;
}

.property-search__button--secondary:hover {
  background: var(--bs-primary);
}

/* Modifier: property-search__button--outline */
.property-search__button--outline {
  background: transparent;
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
}

.property-search__button--outline:hover {
  background: var(--bs-primary);
  color: white;
}

/* Element: property-search__icon */
.property-search__icon {
  font-size: 0.9rem;
}

/* Modifier: property-search__field--small */
.property-search__field--small {
  min-width: 150px;
  max-width: 180px;
}

/* Modifier: property-search__field--large */
.property-search__field--large {
  min-width: 250px;
}

/* Responsive Modifiers */
@media (max-width: 768px) {
  .property-search {
    padding: 15px;
  }

  .property-search__form {
    flex-direction: column;
    gap: 20px;
  }

  .property-search__field {
    min-width: 100%;
  }

  .property-search__button {
    width: 100%;
    min-width: 100%;
  }

  /* Modifier: property-search__form--mobile */
  .property-search__form--mobile .property-search__field {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .property-search__label {
    font-size: 0.8rem;
  }

  .property-search__select,
  .property-search__input {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .property-search__button {
    padding: 10px 20px;
    font-size: 0.9rem;
    height: 44px;
  }
  .hero__buttons a{
    padding: 0.5rem;
  }
}

/* Additional utility classes following BEM */
.property-search--compact {
  padding: 15px;
}

.property-search--elevated {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Property Info */
.hero__property-info {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 15;
}

/* Slide Indicators */
.hero__indicators {
  /*position: absolute;
        bottom: 40px;
        right: 40px;*/
  display: flex;
  gap: 12px;
  z-index: 20;
  align-items: center;
}

.hero__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: #ffffff;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
}

.hero__indicator--active {
  width: 15px;
  height: 15px;
}

.hero__indicator:hover {
  border-color: white;
  background: white;
}

.hero__property-location {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.hero__property-price {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Responsive Styles */
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}

@media (max-width: 1440px) {

  .hero__indicators,
  .hero__ref,
  .hero__slider .owl-dots {
    display: none;
  }

  .hero__bottom-content {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .header__content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .hero__bottom-content {
    flex-direction: column;
    gap: 20px;
  }

  .hero__search {
    width: 100%;
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  .hero__search-select {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .hero__search-select:last-of-type {
    border-bottom: none;
  }

  .hero__search-button {
    width: 100%;
    margin-top: 10px;
  }

  .hero__pagination {
    order: -1;
  }

  .hero__indicators {
    right: 20px;
    bottom: 20px;
  }

  .property-search {
    width: 100%;
  }

  .hero__content {
    justify-content: start;
    top: 180px;
  }
  .hero__content.no-searchbar{
    justify-content: end;
    margin-bottom: 150px;
    padding: 0 20px;
  }

  .hero {
    position: inherit;
  }

  .hero__bottom {
    bottom: -150px;
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__bottom {
    padding: 20px;
  }

  .hero__property-price {
    font-size: 24px;
  }
}

@media (min-width:1440px) {
  .hero__content {
    bottom: 140px;
    justify-content: end;
  }
}

/*--------------------------------------------------------------
# 5. Text and Image Section
--------------------------------------------------------------*/
.text-and-image__row{
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
}
.text-and-image__col{
  width: 100%;
}

.text-and-image__row-sm-reverse > :first-child {
  order: 2;
}

.text-and-image__row-sm-reverse > :last-child {
  order: 1;
}

.text-and-image__content{
  padding: 30px;
}

.text-and-image__image img {
  min-height: 500px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .text-and-image__content {
    max-width: 95%;
  }
}

.text-and-image__container {
  padding: 90px 0;
}

@media (min-width: 1023px) {
  .text-and-image__container {
    padding: 120px 0;
  }
}

@media(min-width: 1200px){
  .text-and-image__row, .text-and-image__row-sm-reverse{
    grid-template-columns: 5fr 7fr;
  }
  .text-and-image__row-lg-reverse{
    grid-template-columns: 7fr 5fr;
  }

  .text-and-image__row-sm-reverse > :first-child {
    order: 1;
  }

  .text-and-image__row-sm-reverse > :last-child {
    order: 2;
  }
  .text-and-image__row-lg-reverse > :first-child {
    order: 2;
  }

  .text-and-image__row-lg-reverse > :last-child {
    order: 1;
  }

  }

@media (min-width: 1440px) {
  .text-and-image__content {
    max-width: 70%;
  }
}

@media (max-width:1200px){
  .text-and-image__content{
    padding: 1rem;
  }
  .text-and-image__pt-sm-0{
    padding-top: 0;
  }
}

/*--------------------------------------------------------------
# 6. Insights Section
--------------------------------------------------------------*/

.insights {
  background: var(--bs-gray);
  padding: 40px 0;
}

.insights__container {
  text-align: center;
}

.insights h2 {
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--bs-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.insights__col {
  padding: 0;
}

.insights__image img {
  position: relative;
  height: 500px;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}

.insights__content {
  background: #fff;
  padding: 40px;
}

@media (max-width: 768px) {
  .insights h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .insights__row {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .insights__content {
    position: relative;
    right: 50px;
  }
}

@media (min-width: 1023px) {
  .insights {
    padding: 90px 0 160px 0;
  }
}

/*Overlay*/
.exclusive-properties__overlay,
.testimonial__overlay,
.recently-sold__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(49, 66, 92, 0.7);
  z-index: 1;
}

/*--------------------------------------------------------------
# 7. Exclusive Properties Section
--------------------------------------------------------------*/

.exclusive-properties__overlay {
  background: none;
}
.exclusive-properties__caption {
  background-color: #fff;
  padding: 2rem;
  max-width: 450px;
  color: var(--bs-primary);
}
.recently-sold__item-overlay {
  background-color: transparent !important;
}
.recently-sold__item img{
  filter: grayscale(1) !important;
}

.exclusive-properties__caption {
  text-align: left;
  z-index: 2;
  /* color: #fff; */
}

.exclusive-properties__title {
  color: #fff;
}

.exclusive-properties__slide {
  position: relative;
  height: 65vh;
}

.exclusive-properties__slide .owl-dots {
  position: absolute;
  bottom: 90px;
  right: 150px;
}

@media (min-width: 992px) {
  .exclusive-properties__caption {
    left: 120px;
  }
}

@media (max-width: 1024px) {
  .exclusive-properties__slide .owl-dots {
    display: none;
  }
}

@media (max-width: 767px) {
  .exclusive-properties__caption {
    bottom: 1em;
    left: 0;
  }
  .exclusive-properties__slide .owl-nav {
    display: none;
  }
}


/*--------------------------------------------------------------
# 8. Testimonial Section
--------------------------------------------------------------*/

.testimonial {
  position: relative;
  padding: 100px 0 100px 0;
}

.testimonial__slide-item {
  position: relative;
  min-height: 330px;
  color: #fff;
  text-align: center;
  padding-top: 60px;
}

.testimonial .owl-dots {
  justify-content: center;
}

.testimonial__caption {
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial h2 {
  margin-bottom: 60px;
  color: #fff;
}

.testimonial__caption h3 {
  margin-top: 60px;
  color: #fff;
  font-size: 18px;
}

.testimonial__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.testimonial__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
}

@media (max-width: 767px) {
  .testimonial {
    padding: 150px 0 60px 0;
  }

  .testimonial .owl-nav button.owl-prev{
    left: 5px;
  }
  .testimonial .owl-nav button.owl-next{
    right: 5px;
  }
  .testimonial__caption{
    padding: 0 1.5rem;
  }

}

/*--------------------------------------------------------------
# 9. Latest News Section
--------------------------------------------------------------*/

.latest-news {
  padding: 80px 0 120px 0;
}

.latest-news__slide .item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 335px;
  background: #fff;
  margin-bottom: 30px;
}

.latest-news__slide .item:hover {
  transform: translateY(1px);
}

.latest-news__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.latest-news__slide .item:hover .latest-news__slide-image {
  transform: scale(1.1);
}

.latest-news__slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
}

.latest-news__slide .item:hover .latest-news__slide-overlay {
  opacity: 1;
}

.latest-news__slide-data {
  position: absolute;
  top: 30px;
  left: 0;
  padding: 10px 30px;
  background-color: var(--bs-primary);
  color: #fff;
}

.latest-news__slide-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
  transform: translateY(30px);
  transition: transform 0.4s ease 0.1s;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.latest-news__slide .item:hover .latest-news__slide-title {
  transform: translateY(0);
}

.latest-news__slide img {
  height: 335px;
  object-fit: cover;
}

.latest-news__slide .owl-dots {
  display: none;
}

.latest-news__container {
  margin: 0 auto;
}

.latest-news__section-title {
  text-align: center;
  color: #333;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
}

.latest-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.latest-news__slide .owl-prev,
.latest-news__slide .owl-next {
  position: relative;
  top: inherit;
  bottom: inherit;
  left: inherit !important;
  right: inherit !important;
  transform: unset;
}

.latest-news__slide .owl-nav {
  display: flex;
  justify-content: end;
  gap: 15px;
  padding: 0 30px;
}

@media (max-width: 768px) {
  .latest-news__slide {
    height: 50vh;
  }

  .latest-news__slide-title {
    font-size: 1.5rem;
  }

  .latest-news__slide-text {
    font-size: 0.9rem;
  }

  .latest-news__slide-author {
    font-size: 1rem;
  }

  .latest-news__section-title {
    font-size: 2rem;
  }

  .latest-news__slide-overlay {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .latest-news__grid {
    grid-template-columns: 1fr;
  }
}

.multi-slide-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 10px;
}

@media (max-width: 1024px) {
  .latest-news__slide-title {
    margin-bottom: 50px;
  }

  .latest-news__slide .item .latest-news__slide-overlay {
    opacity: 1;
  }
}

/* Desktop: 3 slides */
@media (min-width: 992px) {
  .carousel-slide {
    flex: 0 0 33.333333%;
  }
}

/* Tablet: 2 slides */
@media (min-width: 768px) and (max-width: 991px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
}

/* Mobile: 1 slide */
@media (max-width: 767px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
}

@media (min-width: 1440px) {
  .latest-news__col--text {
    max-width: 80%;
  }
}

.carousel-slide-content {
  position: relative;
  height: 60vh;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-news__slide-controls .carousel-indicator {
  display: none;
}

.latest-news__slide-controls {
  position: absolute;
  width: 120px;
  bottom: 15px;
  right: 0;
}

.latest-news__slide-btn {
  color: white;
  width: auto;
}

.latest-news__slide-btn:hover {
  color: white;
  opacity: 0.8;
}

/*--------------------------------------------------------------
# 10. Recently Sold Section
--------------------------------------------------------------*/

.recently-sold {
  padding-bottom: 70px;
}

.recently-sold__slide .item {
  width: 100%;
  max-width: 445px;
}

.recently-sold__item {
  position: relative;
  max-width: 450px;
  height: 450px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.recently-sold__item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ADICIONADO: Efeito hover zoom */
.recently-sold__item:hover .recently-sold__item-image {
  transform: scale(1.1);
}

.recently-sold__item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.recently-sold__item-content {
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.recently-sold__item-content h3 {
  font-family: Futura PT;
  font-weight: 400;
  font-style: Book;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  transition: transform 0.3s ease;
}

.recently-sold__item-content h3,
.recently-sold__item-content span {
  color: #fff;
}

.recently-sold__item-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
}

.recently-sold__item:hover .recently-sold__item-content h3 {
  transform: translateY(-5px);
}

.recently-sold__item:hover .recently-sold__item-content span {
  transform: translateY(-3px);
  transition: transform 0.3s ease 0.1s;
}

/*--------------------------------------------------------------
# 11. FAQ Section
--------------------------------------------------------------*/

.faq {
  padding: 90px 0;
  background-color: var(--bs-gray);
}

.faq-title {
  list-style: none;
  margin-bottom: 30px;
}

.faq-title h2 {
  color: var(--bs-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-items {
  max-width: 700px;
  margin-left: 150px;
}

.faq-group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-group li {
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--bs-primary);
}

.faq-image {
  height: 500px;
}

.faq-group li.faq-title {
  background: transparent;
  box-shadow: none;
  margin-bottom: 30px;
}

.faq-group li.faq-title:hover {
  box-shadow: none;
}

.trigger {
  display: block;
  padding: 20px 0;
  text-decoration: none;
  color: var(--bs-primary);
  font-weight: 400;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.trigger:hover {
  color: var(--bs-secondary);
  text-decoration: none;
}

.trigger::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 20px;
  height: 12px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAyNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMC45OTk5OTlMMTMuNSAxMy41TDI2IDEiIHN0cm9rZT0iIzMxNDI1QyIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.trigger.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #fff;
}

.faq-content.active {
  padding: 0 30px 0 30px;
}

.faq-content p {
  line-height: 1.6;
  color: var(--bs-primary);
}

@media (max-width: 1024px) {
  .faq-image {
    margin-bottom: 30px;
  }

  .faq-items {
    margin: 0 auto;
  }
}

/* Melhorias de acessibilidade */
.trigger:focus {
  outline: 1px solid var(--bs-secondary);
  outline-offset: 2px;
}

.faq-content__image {
  margin: 30px 0 60px 0;
}

.faq-content__image img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}


/*--------------------------------------------------------------
# 12. Property Collection Section
--------------------------------------------------------------*/

.property-collection {
  padding: 160px 0;
}

.property-collection__card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  height: 500px;
  width: 100%;
  padding: 0;
}

.property-collection__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-collection__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  color: var(--bs-primary);
  padding: 30px 45px;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.property-collection__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bs-primary);
}

.property-collection__description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.9;
  max-width: 80%;
}

@media (min-width: 992px) {
  .property-collection .owl-stage-outer {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }

  .property-collection .owl-stage {
    display: flex !important;
    margin: 0;
    padding-left: 40px;
    padding-right: 8px;
  }

  .property-collection .owl-item {
    flex: 1 1 0%;
    min-width: 0;
    padding: 0 15px;
    transition: flex 0.6s ease;
  }

  .property-collection .owl-stage:hover .owl-item {
    flex: 0.9;
  }

  .property-collection .owl-stage .owl-item:hover {
    flex: 0.94;
  }

  .property-collection__card:hover {
    padding: 0;
    z-index: 10;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
  }

  .property-collection__card:hover .property-collection__image {
    transform: scale(1.1);
  }

  .property-collection__card:hover .property-collection__content {
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .property-collection__card {
    cursor: default;
    height: auto;
    width: 100%;
  }

  .property-collection__image {
    height: 250px;
  }

  .property-collection__content {
    position: static;
    transform: none;
    background: white;
    color: var(--bs-primary);
    padding: 25px;
  }

  .property-collection__title {
    color: var(--bs-primary);
    font-size: 1.5rem;
  }

  .property-collection__content {
    padding: 30px;
  }

  .property-collection__description {
    color: var(--bs-primary);
    opacity: 1;
    max-width: 300px;
  }

  .property-collection__action {
    background: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
  }

  .property-collection__action:hover {
    background: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
  }
}

/*--------------------------------------------------------------
# 13. Newsletter Section
--------------------------------------------------------------*/

.newsletter-section {
  background: #fff;
}

.newsletter-section h2 {
  color: var(--bs-primary);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.newsletter-section p {
  color: var(--bs-primary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter-form .input-group {
  display: flex;
  flex-direction: column;
  max-width: 315px;
}

.newsletter-form .input-group input {
  box-shadow: -4px -8px 18px 0px #0000000d;
  width: 100%;
}

.newsletter-form .form-control {
  background-color: #FFF;
  border: 1px solid #fff;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.newsletter-form .form-control:focus {
  background-color: white;
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-subscribe {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: white;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  transform: translateY(-2px);
}

.btn-subscribe:focus {
  box-shadow: 0 0 0 0.2rem rgba(73, 80, 87, 0.25);
}

/*--------------------------------------------------------------
# 14. Footer
--------------------------------------------------------------*/

.footer {
  background-color: var(--bs-primary);
  color: white;
  padding: 60px 0 0 0;
}

.footer h5 {
  font-family: "Futura PT";
  font-weight: 500;
  color: white;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a,
.contact-info a,
.contact-info span {
  color: #fdfcfc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin: 0.25rem 0;
  color: white;
  font-size: 0.95rem;
}

.contact-info a {
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-primary);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--bs-secondary);
  color: var(--bs-secondary);
  transform: translateY(-2px);
}

.hashtag {
  color: #adb5bd;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.newsletter-footer-btn {
  background-color: transparent;
  border: 1px solid #fdfcfc;
  color: #fdfcfc;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
}

.newsletter-footer-btn:hover {
  background-color: white;
  color: #495057;
  border-color: white;
}

.footer-bottom p {
  color: #adb5bd;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.company-logo {
  max-width: 60px;
  height: auto;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }

  .newsletter-section h2 {
    font-size: 2rem;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .social-links {
    margin-top: 2rem;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}

@media (max-width:1200px){
  .newsletter-section .row{
    text-align: center;
  }
  .newsletter-form .input-group{
    margin: 0 auto;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# 15. Article Page
--------------------------------------------------------------*/

.article__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0.65;
  margin-bottom: 60px;
}

.article__time {
  display: flex;
  align-items: center;
  gap: 15px;
}

.article__body .video-thumbnail {
  margin: 30px 0 60px 0;
}

.faq-article .trigger {
  background-color: #B5D9EF;
  color: var(--bs-primary);
  padding: 20px 30px;
}

 .trigger.active {
  background-color: var(--bs-primary);
  color: #FFF;
}

.faq-article .trigger::after {
  right: 30px;
}

.faq-article li {
  border-bottom: none;
}

.faq-article .trigger.active::after, .faq  .trigger.active::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjciIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAyNyAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMC45OTk5OTlMMTMuNSAxMy41TDI2IDEiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==");
  transform: translateY(-50%) rotate(180deg);
}

.circle-list {
  list-style: none;
  padding-left: 20px;
}

.circle-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.circle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--bs-primary);
  border-radius: 50%;
}

.article__footer {
  margin: 60px 0;
}

.article__footer h5 {
  font-family: "Futura PT";
  margin: 15px;
  font-size: 18px;
}

.article__share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 20px;
  gap: 5px;
}

/*Video Thumbnail*/

/* Container do vídeo */
.video-thumbnail {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Imagem do vídeo */
.video-thumbnail img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.article__body .video-thumbnail img {
  height: 350px;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

/* Overlay escuro */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* Ícone de play */
.play-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-icon {
  transform: scale(1.15);
}

.play-icon svg {
  width: 40px;
  height: 40px;
  margin-left: 5px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .video-thumbnail img {
    height: 250px;
  }

  .play-icon {
    width: 80px;
    height: 80px;
  }

  .play-icon svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .video-thumbnail img {
    height: 200px;
  }

  .play-icon {
    width: 70px;
    height: 70px;
  }

  .play-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Animação de pulse para o hover */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.play-icon.pulse {
  animation: pulse 1.5s infinite;
}

/*--------------------------------------------------------------
# 16. Listing Property
--------------------------------------------------------------*/
.listing-prop__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.listing-prop__item--content{
  gap: 20px;
  padding: 0 30px;
}

.listing-prop__filter{
  padding-bottom: 30px;
}

.listing-prop__item--slider{
  position: relative;
}

.listing-prop__item--slide,
.listing-prop__item--slide img {
  width: 100%;
  height: 400px;
}

.listing-prop__item--slide img {
  object-fit: cover;
}

.listing-prop__item--tag{
  position: absolute;
  top: 30px;
  padding: 10px 30px;
  background-color: var(--bs-primary);
  z-index: 2;
  color: #FFF;
}

.listing-prop__row{
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.tag-sold{
  background-color: var(--bs-gray-secondary);
}

.listing-prop__item--features, .more-prop__item--features {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.listing-prop__item--features li  {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: end;
}

.listing-prop__item--features li small{
  font-size: 13px;
  opacity: 0.65;
}

.listing-prop__item--desc p{
 opacity: 0.65;
}

.listing-prop__item .btn-save svg, .listing-prop__item .btn-print svg {
  margin-right: 15px;
}

/* Mobile adjustments */
@media (max-width: 1240px) {
  .listing-prop__item--content {
    padding: 0 15px;
  }

  .listing-prop__row {
    gap: 60px;
  }

  .listing-prop__item{
    max-width: 775px;
    margin:  0 auto;
  }

  .listing-prop__item--slide,
  .listing-prop__item--slide img {
    height: 490px;
    max-width: 775px;
  }
}
@media (max-width: 991px) {

  .listing-prop__item{
    max-width: 500px;
    margin:  0 auto;
  }

  .listing-prop__item--slide,
  .listing-prop__item--slide img {
    height: 490px;
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .listing-prop__item{
    max-width: 450px;
    margin:  0 auto;
  }

  .listing-prop__item--slide,
  .listing-prop__item--slide img {
    height: 400px;
    max-width: 450px;
  }

}
@media (max-width: 576px) {
  .listing-prop__item--content {
    padding: 0 10px;
  }

  .listing-prop__item--slide,
  .listing-prop__item--slide img {
    max-width: 350px;
  }

  .listing-prop__item--tag {
    padding: 8px 20px;
    font-size: 14px;
  }

  .listing-prop__row {
    gap: 40px;
  }
}


/* Desktop - apenas para telas grandes */
@media (min-width: 1240px){
  .listing-prop__item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .listing-prop__item--slide,
  .listing-prop__item--slide img {
    max-width: 620px;
  }
}

/*--------------------------------------------------------------
# 17. More Property Section
--------------------------------------------------------------*/

.more-prop{
  padding: 50px 0 100px 0;
}

.more-prop__item {
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
  max-width: 465px; /* volta para max-width */
  padding: 0;
  box-sizing: border-box;
}

.more-prop__item--content{
  padding: 30px;
  gap: 20px;
}

.more-prop__item--slider img{
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.more-prop__item--features{
  justify-content: start;
}

.more-prop__item--features li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  opacity: var(--ff-opacity);
  text-transform: uppercase;
}

.more-prop__item--features span{
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  font-size: 16px;
}

.more-prop__btn-view{
  margin-top: 10px;
}

/* Mobile first - responsivo */
.more-prop__col {
  padding: 0 15px;
  margin: 0 auto;
}

.more-prop__item {
  margin-bottom: 100px;
}

.more-prop__item--features li:not(:first-child)::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--bs-primary);
  opacity: var(--ff-opacity);
  border-radius: 50%;
  margin-right: 15px;
  align-self: center;
  flex-shrink: 0;
}

.more-prop__item--features{
  gap: 15px;
}

@media (min-width: 1024px){
  .more-prop__col{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0;
    max-width: 955px;
  }

  .more-prop__item {
    margin-bottom: 0;
  }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
  .more-prop__col {
    padding: 0 10px;
  }

  .more-prop__item--content {
    padding: 20px;
  }
  .more-prop__item--features li:not(:first-child)::before {
    margin-right: 5px;
  }

  .more-prop__item--features{
    gap: 5px;
  }
}

/*--------------------------------------------------------------
# 18. Single Property Page
--------------------------------------------------------------*/

.single-prop__gallery{
  max-width: 1200px;
  margin:  0 auto;
}

.single-prop__gallery .item {
  transition: 0.4s ease all;
  transform: scale(0.9);
}

.single-prop__gallery .item img,
.single-prop__gallery .item {
  position: relative;
  height: 500px;
  object-fit: cover;
  width: 100%;
}

.single-prop__gallery .owl-item.active .item {
  opacity: 1;
  transform: scale(1);
}

.single-prop__body, .single-prop__header {
  padding: 90px 0;
}

.single-prop__features{
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}
.single-prop__features li{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.single-prop__features--title{
  opacity: var(--ff-opacity);
}

.single-prop__header--col{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.single-prop__buttons span{
 font-size: 14px;
 margin: 0 0 0 5px;
}
.single-prop__notify span{
  margin: 0 0 0 10px;

}

.single-prop__body .owl-dots{
  display: flex;
  justify-content: center;
  padding: 30px 0 0 0;
}

.single-prop__body .owl-dots button, .single-prop__body .owl-dots button.owl-dot.active{
  background-color: var(--bs-primary);
}

.property-details .accordion, .single-prop__footer .accordion{
  margin: 0 auto 3rem auto;
  width: 100%;
}

.section-divider {
  height: 1px;
  background-color: var(--bs-primary);
  margin: 3rem 0;
  border: none;
  opacity: 1;
}

.key-features {
  margin-bottom: 3rem;
}

.key-feature__item {
  margin-bottom: 2rem;
}

.key-feature__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.key-feature__icon svg {
  width: 24px;
  height: 24px;
}

.key-feature__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.key-feature__description {
  line-height: 1.5;
  margin: 0;
}

.attractions-section {
  margin-bottom: 3rem;
}

.attraction-item {
  margin-bottom: 1rem;
}

.attraction-name {
  font-weight: 500;
  display: inline;
}

.attraction-separator {
  margin: 0 8px;
}

.attraction-description {
  color: var(--bs-primary);
  display: inline;
}

.amenities-section {
  margin-bottom: 3rem;
}

.amenity-item {
  margin-bottom: 2rem;
}

.amenity-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
}

.amenity-title {
  margin-bottom: 0.5rem;
}

.amenity-description {
  line-height: 1.4;
  margin: 0;
}

.closing-text {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-link {
  color: var(--bs-primary);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--bs-secondary);
  text-decoration: underline;
}

.pricing-section {
  margin-top: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-item, .btn-download-pdf {
  padding: 1rem 0;
}

.pricing-value {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.pricing-label {
  font-weight: 500;
  text-transform: uppercase;
  opacity: var(--ff-opacity);
  letter-spacing: 0.5px;
}

.btn-download-pdf {
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .feature-item {
      text-align: center;
  }

  .single-prop__features, .single-prop__buttons {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.property-features-section {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# 19. Team Section
--------------------------------------------------------------*/
.team-carousel {
  padding: 0;
}

.team-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s ease;
  margin: 0 10px;
  height: 100%;
  border: none;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 500px;
  width: 100%;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease-out;
}

.team-card:hover .team-image img {
  transform: scale(1.02);
  filter: blur(0.1875rem);
}

.team-info {
  padding: 20px 15px;
  text-align: center;
  background: #fff;
}

.team-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-info .position {
  font-size: 0.85rem;
  color: var(--bs-primary);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.4;
}

/* Card Image Overlay for buttons */
.card-img-overlay {
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  background: rgba(
    0,
    0,
    0,
    0.3
  ); /* Optional: add a slight dark overlay */
  transition: opacity 0.3s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team-card:hover .card-img-overlay {
  opacity: 1;
  pointer-events: auto;
}

.card-img-overlay .btn {
  width: 7rem;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-img-overlay .btn-light {
  background-color: #fff;
  color: var(--bs-primary);
  border: 1px solid #fff;
}

.card-img-overlay .btn-light:hover {
  background-color: #eee;
  color: var(--bs-primary);
  border: 1px solid #eee;
}
@media (max-width: 1440px) {
  .team-section h2 {
    font-size: 2.7rem !important;
  }
}

/* Responsive adjustments for hover effect */
@media (min-width: 1200px) {
  .team-card:hover .team-image img {
    filter: blur(0.1875rem);
  }
  .card-img-overlay {
    opacity: 0;
    pointer-events: none;
  }
  .team-card:hover .card-img-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-image {
    height: 450px;
  }

  .team-info h4 {
    font-size: 1rem;
  }

  .team-info .position {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .team-card {
    margin: 0 5px;
  }

  .team-image {
    height: 400px;
  }

  .team-info {
    padding: 15px 10px;
  }

  .team-info h4 {
    font-size: 0.95rem;
  }

  .team-info .position {
    font-size: 0.75rem;
  }

  .team-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .team-image {
    height: 350px;
  }

  .team-info {
    padding: 12px 8px;
  }

  .team-info h4 {
    font-size: 0.9rem;
  }

  .team-info .position {
    font-size: 0.7rem;
  }
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
  background: #dee2e6;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}
.team-section .owl-carousel .owl-nav button svg path {
  stroke: #31425c; /* Set SVG stroke color to #31425c */
  width: 22px;
  height: 41px;
}

/* Owl Carousel Custom Styling for White Background */
.team-section .owl-carousel .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
  margin: 0;
  text-align: right;
  width: 130px;
}

.team-section .owl-carousel .owl-nav button {
  background: transparent !important;
  border: none !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.team-section {
  padding: 90px 0;
}
.team-section__content {
  justify-content: space-between;
}

/* Property Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.feature-checkbox {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-checkbox svg {
  width: 22px;
  height: 22px;
}

.feature-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Floor Plan Section */
.floor-plan-section {
  margin-bottom: 3rem;
}

.floor-plan-image {
  width: 100%;
  object-fit: cover;
  height: 345px;
}

/* Map Section */
.map-container {
  position: relative;
  width: 100%;
  height: 600px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bs-primary);
  opacity: 0.65;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.map-overlay-content {
  max-width: 300px;
}
.map-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Contact Section */
.contact-section {
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left Side - Agent Info */
.agent-info {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
}

.agent-avatar {
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.agent-avatar img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.agent-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.agent-title {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.agent-contact {
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-icon {
  width: 16px;
  height: 16px;
}

/* Right Side - Contact Form */
.contact-form {
  padding: 3rem 2rem;
}

.form-title {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-control {
  background-color: rgba(49, 66, 92, 0.1);
  border: 1px solid rgba(49, 66, 92, 0.1);
  color: var(--bs-primary);
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background-color: white;
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
  color: var(--bs-primary);
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.country-select {
  flex: 0 0 100px;
}

.phone-input {
  flex: 1;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.checkbox-input {
  margin-top: 0.25rem;
}

.checkbox-label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
  .agent-info .d-flex{
    flex-direction: column !important;
  }

}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .agent-info {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .phone-input-group {
    flex-direction: column;
  }

  .country-select {
    flex: 1;
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}
@media (max-width:1199px){
  .agent-avatar {
    margin-bottom: 0;
  }
  .agent-info .d-flex{
    gap: 30px;
  }
}


/* Sell Home Hero Section */
.sell-home-hero {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.sell-home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.sell-home-hero__icon {
    width: 60px;
    height: auto;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.sell-home-hero__title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    letter-spacing: -1px;
    margin-bottom: 2rem;
    color: var(--bs-primary);
    line-height: 1.2;
}

.sell-home-hero__title-highlight {
    color: var(--bs-primary);
    font-size: 2rem;
}

.sell-home-hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Home Section*/
.sell-home-section {
    padding: 100px 0;
}

.sell-home-section__title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--bs-primary);
    letter-spacing: -0.5px;
}

.sell-home-section__subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 4rem;
}

/* Why Sell Home Section */
.sell-home-why {
    background: #fafafa;
}

.sell-home-why__image {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    object-fit: contain;
}


.sell-home-why__text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sell-home-why__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sell-home-why__feature-item {
    position: relative;
    padding: 1.2rem 0 1.2rem 2rem;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}


@media (max-width: 768px) {
    .sell-home-why__feature-item {
        padding-left: 1.5rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}


@media (min-width: 1440px){
    .sell-home-why__image{
        /* height: 80vh; */
    }
}

.sell-home-why__feature-item:last-child {
    border-bottom: none;
}

.sell-home-why__feature-item:hover {
    color: var(--bs-primary);
}

.sell-home-why__feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 4px;
    height: 4px;
    background: var(--bs-secondary);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sell-home-why__feature-item:hover::before {
    width: 20px;
    height: 2px;
    background: var(--bs-primary);
}

@media (max-width: 768px) {
    .sell-home-why__feature-item::before {
        top: 1.2rem;
        width: 3px;
        height: 3px;
    }

    .sell-home-why__feature-item:hover::before {
        width: 15px;
    }
}

.sell-home-services {
    background: var(--bs-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.sell-home-services__item {
    margin-bottom: 5rem;
    position: relative;
}

.sell-home-services__number {
    font-size: 8rem;
    color: rgba(23, 148, 221, 0.15);
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: 1;
    line-height: 1;
}

.sell-home-services__content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    max-width: 90%;
}

.sell-home-services__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--bs-secondary);
    letter-spacing: 0.5px;
}

.sell-home-services__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.sell-home-services__image {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    margin: 3rem 0;
}


/*CTA Sell */
.sell-home-cta {
    padding: 80px 0;
    background: var(--bs-gray);
    text-align: center;
}

.sell-home-cta__title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--bs-primary);
}

.sell-home-cta__text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sell-home-hero__background {
        width: 100%;
        opacity: 0.08;
    }

    .sell-home-services__content {
        max-width: 100%;
        margin-top: 2rem;
    }

    .sell-home-services__number {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        text-align: center;
        margin-bottom: 1rem;
        font-size: 4rem;
    }

    .sell-home-section {
        padding: 60px 0;
    }
}

/* Subtle Animation Classes */
.sell-home-animation {
    opacity: 0;
    transform: translateY(30px);
    animation: sellHomeFadeInUp 0.6s ease forwards;
}

@keyframes sellHomeFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sell-home-animation:nth-child(1) { animation-delay: 0.1s; }
.sell-home-animation:nth-child(2) { animation-delay: 0.15s; }
.sell-home-animation:nth-child(3) { animation-delay: 0.2s; }
.sell-home-animation:nth-child(4) { animation-delay: 0.25s; }

.sell-home-card {
    background: #ffffff;
    padding: 3rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

@media (max-width: 767px) {
    .sell-home-card{
        padding: 3rem 1.5rem;
    }
}

.sell-home-card:hover {
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.sell-home-text-spacing {
    letter-spacing: 0.3px;
}

.sell-home-svg-icon {
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(2px);
}

/*Lines */
.sell-home-divider {
    width: 60px;
    height: 1px;
    background: var(--bs-secondary);
    margin: 2rem auto;
}

.sell-home-divider--white {
    background: rgba(255, 255, 255, 0.3);
}