#page-index {
  overflow-x: hidden;
}

#modal-referral-welcome {
  .modal-custom__btn--confirm {
    background: var(--bg-primary);
    padding: 10px 20px;
  }
}

.home-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  padding: 0;
  display: block;
  overflow: hidden;
}

.home-banner__visual,
.home-banner__visual .slick-list,
.home-banner__visual .slick-track,
.home-banner__item {
  height: 100%;
}

.home-banner__img {
  height: 100%;
  border-radius: 0;
  display: block;
}

.home-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-banner__content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.home-banner__content-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: -1;
}

.home-banner__content {
  color: #fff;
  pointer-events: auto;
  max-width: 800px;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.home-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-banner__title {
  font-size: clamp(32px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 700px;
}

.home-banner__description {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
  max-width: 600px;
}

/* Slick slider custom controls */
.home-banner .slick-dots {
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: auto;
  left: auto;
  display: flex !important;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.home-banner .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.home-banner .slick-dots button {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  border-radius: 0;
  transition: all 0.3s;
}

.home-banner .slick-dots button::before {
  display: none;
}

.home-banner .slick-dots li.slick-active button {
  background: #fff;
  background: var(--color-1, #eab33c);
  opacity: 1;
}

.home-banner .slick-prev,
.home-banner .slick-next {
  position: absolute;
  bottom: 30px;
  top: auto;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 20;
  transform: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.home-banner .slick-prev:hover,
.home-banner .slick-next:hover {
  background: var(--color-1, #eab33c);
  border-color: var(--color-1, #eab33c);
}

.home-banner .slick-prev {
  right: 180px;
  left: auto;
}

.home-banner .slick-next {
  right: 20px;
}

.home-banner .slick-prev::before {
  content: '‹';
  font-size: 24px;
  opacity: 1;
  line-height: 1;
}

.home-banner .slick-next::before {
  content: '›';
  font-size: 24px;
  opacity: 1;
  line-height: 1;
}

body#page-index .main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  backdrop-filter: blur(2px);
}

body#page-index .main-header__link,
body#page-index .main-header__user-login {
  color: #fff !important;
}

body#page-index .main-header .icon-arrow:after {
  background-color: #fff !important;
}

body#page-index .main-header__btn--primary {
  background: transparent;
  border: 1px solid #eab33c;
  color: #eab33c;
}

body#page-index .main-header__btn--primary:hover {
  background: #eab33c;
  color: #fff;
}

body#page-index .main-header__logo img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .home-banner {
    min-height: 500px;
  }

  .home-banner__content {
    margin-top: 80px;
  }

  .home-banner .slick-dots {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }

  .home-banner .slick-prev,
  .home-banner .slick-next {
    display: none !important;
  }
}

/* Navigation buttons (now using slick default unified styling instead of manual) */
.hero-slider .slick-prev,
.hero-slider .slick-next {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  opacity: 0;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  z-index: 1;
}

.hero-slider:hover .slick-prev,
.hero-slider:hover .slick-next {
  opacity: 1;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
  background: rgba(255, 255, 255, 0.4) !important;
  color: white;
  transform: translateY(-50%);
}

.hero-slider .slick-prev {
  left: 15px;
}

.hero-slider .slick-next {
  right: 15px;
}

.slick-arrow svg {
  width: 20px;
  height: 20px;
}

.home-search {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-bottom: 40px;
}

.search-form {
  background: #f4f0ea;
  /* padding: 20px; */
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Tabs */
  /* Main Search Row */
}

.search-form__tabs {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 5px;
  padding: 12px 12px 0;
}

.search-form__tab {
  padding: 10px 20px;
  border: none;
  border-radius: 14px 14px 0 0;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  color: var(--color-second);
}

.search-form__tab.is-active {
  background: var(--color-3);
  color: #fff;
}

.search-form__main {
  display: flex;
  gap: 10px;
  padding: 15px;
  background-color: #FFF;
}

.search-form__field {
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 3px 15px;
  border: 1px solid #eee;
  /* height: 32px; */
}

.search-form__field--select {
  /* flex: 1; */
  font-weight: 500;
  cursor: pointer;
  gap: 5px;
  max-width: 198px;
}

.search-form__field--select .icon-property {
  line-height: 0;
}

.search-form__field--select .icon-property img,
.search-form__field--select .icon-property svg {
  width: 15px;
  object-fit: contain;
}

.search-form__field--input {
  flex: 3;
}

.search-form__field--input .icon-search {
  line-height: 0;
}

.search-form__field--input .icon-search img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.search-form__select {
  padding: 0;
  border: 0;
  background: transparent;
}

.search-form__input {
  border: none;
  outline: none;
  width: 100%;
  padding-left: 10px;
  font-size: 14px;
}

.search-form__submit {
  background: var(--color-3);
  color: #fff;
  border: none;
  padding: 0 30px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  transition: .3s;

  @media (max-width: 640px) {
    padding: 0 7px;
  }
}

.search-form__submit:hover {
  background: var(--bg-third);
}

.search-form__trends {
  display: flex;
  align-items: center;
  font-size: 13px;
  padding: 14px 20px;
}

.search-form__trend-label {
  font-weight: 500;
  margin-right: 15px;
  white-space: nowrap;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-form__trend-label .icon-trend {
  line-height: 0;
}

.search-form__trend-label .icon-trend img,
.search-form__trend-label .icon-trend svg {
  width: 19px;
  object-fit: contain;
}

.search-form__trend-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.search-form__trend-list p {
  background: #FFF;
  padding: 6px 12px;
  border-radius: 30px;
  color: var(--color-second);
  white-space: nowrap;
  font-weight: 500;
  border: 1px solid #e5e1da;
}

.search-form__trend-list p:hover {
  border: 1px solid var(--color-1);
}

@media (max-width: 991px) {
  .search-form__field {
    padding: 10px 15px;
  }
}

@media (max-width: 768px) {
  .home-search {
    position: unset;
    padding: 10px 0;
  }

  .search-form {
    border: 1px solid #e8e8e8;
    border-radius: 0;
  }

  .search-form__trend-label {
    font-size: 13px;
  }

  .search-form__trends {
    padding: 10px 12px;
  }

  .home-search .ctnr {
    padding: 0;
  }
}






/* Hero Banner Section */
.hero-banner-section {
  position: relative;
}

.slider-item {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex !important;
  align-items: center;
  height: 100vh;
}

.slider-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #FFF;
  max-width: 48%;
}

.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-title {
  font-size: clamp(40px, 4vw, 65px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
  font-size: 18px;
  font-weight: 400;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

.hero-mini-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  display: flex;
  align-items: center;
}

.hero-mini-slider-overlay .ctnr {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.banner-mini-slider {
  pointer-events: auto;
  width: 48%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-bottom: 0 !important;
}

.mini-slide-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-mini-slider .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  align-items: center;
  gap: 8px;
  z-index: 10;
  list-style: none;
  padding: 0;
  margin: 0;
  width: auto;
}

.banner-mini-slider .slick-dots li {
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  border-radius: 0;
  border: 0;
}

.banner-mini-slider .slick-dots li button::before {
  display: none !important;
}

.banner-mini-slider .slick-dots li button {
  width: 40px;
  height: 3px;
  background: #faf4ec66 !important;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
  padding: 0;
  margin: 0;
  border: none;
  font-size: 0;
  box-shadow: none;
  line-height: 0;
  display: block;
}

.banner-mini-slider .slick-dots li.slick-active button {
  background: var(--bg-primary) !important;
  width: 80px;
}

@media (max-width: 1200px) {
  .banner-title {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  .banner-title {
    font-size: 46px;
  }

  .banner-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .banner-title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .banner-subtitle {
    font-size: 16px;
  }

  .hero-mini-slider-overlay {
    display: none;
  }

  .banner-content {
    max-width: 100%;
  }

  .slider-item {
    height: 70vh;
  }
}

/* Reusable Section Titles */
.featured-properties {
  padding: 80px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 15px;
}

.sub-title-section {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-1);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.sub-title-section::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--color-1);
  margin-right: 15px;
}

.title-section h2 {
  font-size: clamp(24px, 4vw, 50px);
  font-weight: 800;
  color: var(--color-second);
  line-height: 1.05;
  letter-spacing: -2.5px;
}


.title-section p {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--color-4);
  margin: 0;
  line-height: 1.6;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .title-section h2 {
    letter-spacing: -1px;
    line-height: 1.2;
  }

  .sub-title-section {
    margin-bottom: 10px;
  }

  .title-section p {
    margin-top: 10px;
  }

  .featured-properties {
    padding: 35px 0;
  }
}

@media (max-width: 375px) {
  .title-section h2 {
    font-size: 22px;
  }
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-all-link .material-icons-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.view-all-link:hover .material-icons-outlined {
  transform: translateX(5px);
}

/* Property Slider */
.property-slider {
  margin: 0 -14px;
}

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

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

@media (max-width: 767px) {
  .section-padding {
    padding: 40px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }

  .title-section {
    font-size: 28px;
  }

  .property-slider {
    margin: 0 -10px;
  }

  .property-card-wrapper {
    padding: 0 10px;
  }

  .property-slider .slick-slide {
    margin: 5px;
  }

  .property-slider .slick-list {
    margin: 0 -5px;
  }
}

.explore-section {
  background-color: var(--bg-section);
  padding: 80px 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.explore-items {
  display: contents;
  /* Allows children to participate in the explore-grid */
}

.category-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fff;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.category-card img:not(.category-icon) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover img:not(.category-icon) {
  transform: scale(1.05);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 26px;
  z-index: 2;
  color: #fff;
}

.category-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(42%) saturate(654%) hue-rotate(4deg) brightness(94%) contrast(88%);
}

.category-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.category-card.small .category-title {
  font-size: 20px;
}

.category-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
  font-weight: 500;
}

.category-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 2;
}

.category-card:hover .category-arrow {
  transform: translate(4px, -4px);
  color: var(--color-1);
}

.category-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 480px;
}

.category-card.small {
  grid-column: span 1;
  grid-row: span 1;
  min-height: 230px;
}

/* Specific grid placements to match the image */
.explore-grid .category-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.explore-grid .category-card:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.explore-grid .category-card:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.explore-grid .category-card:nth-child(4) {
  grid-column: 5 / 6;
  grid-row: 1 / 2;
}

.explore-grid .category-card:nth-child(5) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

@media (max-width: 1400px) {
  .category-title {
    font-size: 28px;
  }
}

@media (max-width: 1200px) {
  .explore-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
  }

  /* Reset specific placements for 4 columns */
  .explore-grid .category-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 280px;
  }

  .explore-grid .category-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 991px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .explore-section {
    padding: 35px 0;
  }

  .js-explore-slider .category-card {
    margin: 0 10px;
    min-height: 350px;
  }

  .category-title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  /* .explore-grid {
    display: block;
  } */

  /* .explore-grid .category-card:not(:last-child) {
    margin-bottom: 15px;
  } */

  .explore-grid .category-card:nth-child(n) {
    min-height: 160px;
  }

  .category-content {
    padding: 15px;
  }

  .category-arrow {
    bottom: 15px;
    right: 15px;
  }

  .category-card.small .category-title {
    font-size: 16px;
  }

  .category-card {
    border-radius: 12px;
  }
}

/* Signature Projects Section */
.signature-projects {
  background-color: #fff;
  padding: 80px 0;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.signature-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 16 / 12;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.signature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.signature-card:hover .signature-img {
  transform: scale(1.08);
}

.signature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%); */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.signature-top {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.signature-badge {
  background-color: var(--bg-primary);
  color: var(--color-second);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.signature-play-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.3s ease;
}

.signature-card:hover .signature-play-btn {
  background-color: #f6a118;
}

.signature-play-btn .material-icons-outlined {
  font-size: 24px;
}

.signature-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto max-content;
  gap: 20px;
  align-items: flex-end;
}

.signature-developer {
  color: var(--color-1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.signature-title {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 8px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.signature-location {
  color: #faf4eccc;
  font-size: 14px;
  display: grid;
  grid-template-columns: 16px auto;
  gap: 6px;
  margin-bottom: 20px;
}

.signature-location svg {
  margin-top: 4px;
}

.signature-stats {
  display: flex;
  gap: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.signature-stats .stat-label {
  color: #aaa;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-value {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.stat-value.highlight {
  color: #f6a118;
  font-size: 18px;
}

.btn-pill {
  background-color: #fff;
  color: var(--color-second);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.signature-card:hover .btn-pill {
  background-color: var(--color-1);
  color: #fff;
}

.btn-pill .material-icons-outlined {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.signature-card:hover .btn-pill .material-icons-outlined {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  /* .signature-grid {
    grid-template-columns: 1fr;
  } */

  .signature-card {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }

  .signature-location {
    display: none;
  }

  .signature-title {
    font-size: 24px;
  }

  .signature-grid {
    gap: 12px;
  }

  .btn-pill {
    display: none;
  }
}

@media (max-width: 767px) {
  .signature-card {
    aspect-ratio: 4 / 5;
  }

  .signature-title {
    font-size: 16px;
    letter-spacing: 0;
  }

  .signature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
  }

  .signature-stats {
    gap: 10px;
  }

  .signature-top {
    top: 10px;
    left: 10px;
  }

  .signature-location {
    margin-bottom: 10px;
  }

  .signature-projects {
    padding: 35px 0;
  }

  .signature-badge {
    font-size: 9px;
  }

  .stat-value.highlight {
    font-size: 13px;
  }

  .stat-value {
    font-size: 12px;
  }

  .signature-stats .stat-label {
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }
}


.just-listed-section {
  padding: 80px 0;
  background-color: var(--bg-section);
}

/* Listing Tabs Section */
.listing-tabs-wrapper {
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
}

/* .listing-tabs-wrapper::-webkit-scrollbar {
  display: none;
} */

.listing-tabs {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.listing-tab-btn {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.listing-tab-btn:hover {
  border-color: var(--color-3);
  color: var(--color-3);
}

.listing-tab-btn.active {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: #fff;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 -14px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

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

@media (max-width: 767px) {
  .listing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .listing-tabs-wrapper {
    margin-bottom: 20px;
  }

  .just-listed-section {
    padding: 35px 0;
  }
}


.map-search-section {
  padding: 80px 0;
}

/* Map Search Section */
.map-search-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.map-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  background-color: #f0f3f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.map-visual:hover img {
  transform: scale(1.05);
}

.btn-open-map {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #1a4f40;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.btn-open-map:hover {
  background-color: #f6a118;
  color: #fff;
}

.map-status {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 15px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-status-icon {
  width: 40px;
  height: 40px;
  background-color: #f0f5f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a4f40;
}

.map-status-text .status-label {
  font-size: 11px;
  color: #666;
  margin-bottom: 2px;
}

.map-status-text .status-value {
  font-size: 14px;
  font-weight: 700;
  color: #1a2b21;
}

.top-locations-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.locations-header {
  margin-bottom: 25px;
}

.locations-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-second);
  margin: 0 0 5px 0;
}

.locations-header p {
  font-size: 14px;
  margin: 0;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.location-item:hover {
  background-color: #f7e5cb;
}

.location-info .loc-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-second);
}

.location-info .loc-count {
  font-size: 12px;
}

.location-trend {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trend-value {
  color: #269e5f;
  font-size: 12px;
  font-weight: 700;
}

.location-trend .material-icons-outlined {
  font-size: 16px;
  color: #aaa;
}

@media (max-width: 991px) {
  .map-search-grid {
    grid-template-columns: 1fr;
  }

  .map-visual {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .top-locations-card {
    padding: 20px;
  }

  .map-visual {
    height: 250px;
  }

  .map-status {
    left: 10px;
    bottom: 10px;
    right: 10px;
  }

  .btn-open-map {
    top: 10px;
    right: 10px;
  }

  .map-search-section {
    padding: 35px 0;
  }

  .map-search-grid {
    gap: 20px;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--color-3);
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  background: radial-gradient(circle at 20% 50%, var(--bg-primary) 0%, transparent 50%);
  opacity: .1;
  inset: 0;
}

.why-choose-us .title-section h2 {
  color: #fff;
}

.why-choose-us .desc-section {
  color: #faf4eccc;
  font-size: 18px;
}

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

.why-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.why-header-left {
  flex: 0 0 55%;
  padding-right: 40px;
}

.why-header-right {
  flex: 0 0 45%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 50px;
  background: var(--color-3);
  border-radius: 16px;
}

.stat-box {
  padding: 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
  border-right: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-1);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 14px;
  color: #faf4ecb3;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 25px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--color-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #123524;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}

.feature-content p {
  font-size: 14px;
  color: #faf4ecb3;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .why-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .stats-grid {
    margin-bottom: 30px;
  }

  .why-header-left {
    padding-right: 0;
  }

  .stats-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .stat-box:nth-child(even) {
    border-right: none;
  }

  .stat-box:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 767px) {

  .stat-box {
    border-right: none;
  }

  .stat-box:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .why-choose-us {
    padding: 35px 0;
  }

  .why-choose-us .desc-section {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .stat-box {
    padding: 15px;
  }

  .stat-number {
    font-size: 34px;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-content h3 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 11px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .feature-content h3 {
    font-size: 15px;
  }

  .features-grid {
    gap: 12px;
  }
}

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

.investment-opportunities {
  padding: 80px 0;
  background-color: var(--bg-section);
}

/* Investment Section */
.investment-slider {
  margin: 0 -12px;
}

.investment-slider .slick-slide {
  margin: 0 12px;
}

.investment-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e1da;
}

.inv-image-part {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.inv-image-part img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.investment-card:hover .inv-image-part img {
  transform: scale(1.05);
}

.inv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.inv-top-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0415128c;
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  z-index: 2;
}

.inv-img-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.inv-label {
  font-size: 12px;
  font-weight: 500;
  color: #ccc;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.inv-value {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.8px;
}

.inv-value.highlight {
  color: var(--color-1);
}

.inv-body-part {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inv-body-info ul li {
  font-size: 14px;
  margin-bottom: 4px;
}

.inv-body-info ul li strong {
  font-size: 14px;
  font-weight: 600;
  color: #269e5f;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.inv-body-info ul li strong::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;

  background-color: #269e5f;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 7h6v6'/%3E%3Cpath d='m22 7-8.5 8.5-5-5L2 17'/%3E%3C/svg%3E") no-repeat center;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 7h6v6'/%3E%3Cpath d='m22 7-8.5 8.5-5-5L2 17'/%3E%3C/svg%3E") no-repeat center;

  -webkit-mask-size: contain;
  mask-size: contain;
}

.inv-growth .material-icons-outlined {
  font-size: 18px;
}

.btn-circle-action {
  width: 44px;
  height: 44px;
  background: var(--color-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
}

.investment-card:hover .btn-circle-action {
  background: var(--color-1);
}

.btn-circle-action .material-icons-outlined {
  font-size: 20px;
}

@media (max-width: 768px) {
  .investment-opportunities {
    padding: 35px 0;
  }
}


/* Partner Section */
.partner-section {
  padding: 80px 0;
}

.partner-banner {
  position: relative;
  background-color: #041512;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.partner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.partner-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0d1a15 45%, transparent 100%);
}

.partner-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  width: 100%;
  padding: 64px;
  align-items: center;
}

.partner-section .title-section h2 {
  color: #fff;
  margin-bottom: 16px;
}

.partner-section .desc-section {
  color: #ccc;
  margin-bottom: 32px;
  font-size: 18px;
}

.partner-section .desc-section .highlight {
  color: #f6a118;
  font-weight: 700;
}

.partner-section .sub-title-section {
  color: var(--color-1);
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
}

.partner-section .sub-title-section::before {
  display: none;
}

.partner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-primary);
  color: var(--color-second) !important;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary-partner:hover {
  background: var(--bg-third);
}

.btn-secondary-partner {
  color: #fff !important;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 30px;
  background: #ffffff26;
}

.btn-secondary-partner:hover {
  background: #ffffff40;
}

.partner-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.partner-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.partner-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(246, 161, 24, 0.3);
}

.partner-stat-card h3 {
  font-size: 50px;
  font-weight: 800;
  color: var(--color-1);
  margin-bottom: 8px;
  line-height: 1;
}

.partner-stat-card p {
  font-size: 14px;
  color: #bbb;
  font-weight: 500;
}

@media (max-width: 991px) {
  .partner-content {
    display: flex;
    flex-direction: column;
    padding: 25px 18px;
    gap: 0;
  }

  .partner-bg-overlay {
    background: linear-gradient(to bottom, #0d1a15 50%, transparent 100%);
  }

  .partner-left {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .partner-section .sub-title-section {
    justify-content: center;
  }

  .partner-actions {
    justify-content: center;
  }

  .partner-right {
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .partner-section .title-section {
    font-size: 32px;
  }

  .partner-actions {
    /* flex-direction: column; */
    width: 100%;
  }

  .btn-primary-partner,
  .btn-secondary-partner {
    width: 100%;
    justify-content: center;
  }

  .partner-section {
    padding: 35px 0;
  }

  .partner-section .desc-section {
    font-size: 14px;
  }

}

@media (max-width: 480px) {
  .partner-stat-card {
    padding: 15px;
    text-align: center;
  }

  .partner-stat-card h3 {
    font-size: 30px;
  }

  .btn-secondary-partner {
    font-size: 14px;
    padding: 12px;
  }

  .btn-primary-partner {
    font-size: 14px;
    padding: 12px 12px;
  }
}

@media (max-width: 380px) {
  .partner-stat-card h3 {
    font-size: 24px;
  }

  .partner-stat-card p {
    font-size: 12px;
  }

  .partner-actions {
    flex-direction: column;
  }
}

/* Agents Section */
.agents-section {
  padding: 80px 0;
  background-color: var(--bg-section);
}

.agents-slider {
  margin: 0 -12px;
}

.agent-slide-item {
  padding: 12px;
}

.agent-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e1da;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.agent-card:hover {
  transform: translateY(-5px);

}

.agent-img-part {
  padding-bottom: 100%;
  background: #eaeaea;
}

.agent-rating {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.agent-rating .material-icons-outlined {
  font-size: 14px;
  color: var(--color-1);
}

.agent-body-part {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.agent-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-second);
  display: flex;
  align-items: center;
  gap: 6px;
}

.agent-name svg {
  color: var(--color-1);
}

.agent-role {
  font-size: 13px;
  color: #1f4a5c;
  font-weight: 600;
  margin-bottom: 4px;
}

.agent-office {
  font-size: 12px;
  color: var(--color-second);
}

.agent-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}

.agent-transactions {
  font-size: 12px;
}

.agent-transactions strong {
  color: var(--color-second);
  font-weight: 700;
}

.agent-contact-link {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.agent-card:hover .agent-contact-link {
  color: var(--color-1);
}

.agent-contact-link .material-icons-outlined {
  font-size: 14px;
}

@media (max-width: 768px) {
  .agents-section {
    padding: 35px 0;
  }

  .agent-slide-item {
    padding: 4px;
  }

  .agents-slider {
    margin: 0 -4px;
  }

  .agent-body-part {
    padding: 10px;
  }

  .agent-name {
    font-size: 14px;
  }
}


/* Insights Section */
.insights-section {
  padding: 80px 0;
  background-color: var(--bg-section);
}

.insights-slider {
  margin: 0 -12px;
}

.insights-slider .slick-dots {
  margin-top: 35px;
}

.insight-slide-item {
  padding: 0 12px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-img-link {
  padding-bottom: 75%;
  border-radius: 22px;
  margin-bottom: 20px;
}

.insight-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fefbf8e6;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-second);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.insight-body-part {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0 5px;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 12px;
}

.insight-meta i {
  font-size: 14px;
  transform: translateY(-1px);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-dot {
  font-size: 10px;
  color: #ccc;
}

.insight-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  letter-spacing: -0.7px;
}

.insight-read-more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.insight-read-more .material-icons-outlined {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.insight-read-more:hover .material-icons-outlined {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .insights-section {
    padding: 35px 0;
  }

  .insight-title {
    font-size: 16px;
  }
}


/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

/* .testimonials-section .section-header {
  margin-bottom: 50px;
  display: block;
  max-width: 50%;
  text-align: center;
  margin-left: auto;
} */

.testimonials-slider {
  margin: 0 -12px;
}

.testi-slide-item {
  padding: 12px;
}

.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid #e5e1da;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testi-card:hover {
  transform: translateY(-5px);
}

.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.testi-stars {
  display: flex;
  gap: 2px;
}

.testi-stars .material-icons-outlined {
  font-size: 18px;
  color: #f6a118;
}

.testi-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
}

.testi-quote-icon svg {
  color: #fce7c8;
  transform: rotate(180deg);
  width: 40px;
  height: 40px;
}

.testi-content {
  font-size: 16px;
  color: var(--color-second);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 102px;
}

.testi-author {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #e5e1da;
  padding-top: 20px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
}

.testi-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-second);
  margin: 0 0 4px 0;
}

.testi-role {
  font-size: 12px;
}

@media (max-width: 768px) {
  .testimonials-section .section-header {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .testimonials-section {
    padding: 35px 0;
  }
}