# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--background-color), transparent 5%) 100%);
  padding: 140px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .hero {
    padding: 100px 0 60px;
  }
}

.hero .hero-content {
  width: 100%;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero .hero-badge i {
  font-size: 12px;
}

.hero .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero .hero-text h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-text p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.hero .search-form {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .search-form .form-floating .form-control,
.hero .search-form .form-floating .form-select {
  color: var(--default-color);
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  font-size: 14px;
  height: 56px;
}

.hero .search-form .form-floating .form-control:focus,
.hero .search-form .form-floating .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.hero .search-form .form-floating .form-control::placeholder,
.hero .search-form .form-floating .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.hero .search-form .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.hero .search-form .btn-search {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero .search-form .btn-search:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .search-form .btn-search i {
  font-size: 16px;
}

.hero .hero-stats .stat-item {
  text-align: center;
  padding: 16px;
}

.hero .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-color);
}

.hero .hero-stats .stat-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-weight: 500;
}

.hero .hero-images {
  position: relative;
}

.hero .hero-images .image-stack {
  position: relative;
  height: 600px;
}

.hero .hero-images .image-stack .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero .hero-images .image-stack .main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero .hero-images .image-stack .main-image .property-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface-color);
  padding: 12px 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-images .image-stack .main-image .property-tag .price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.hero .hero-images .image-stack .main-image .property-tag .type {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  font-weight: 600;
}

.hero .hero-images .image-stack .secondary-image {
  position: absolute;
  top: -40px;
  left: 40px;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 4px solid var(--surface-color);
}

.hero .hero-images .image-stack .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-images .image-stack .floating-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  width: 280px;
}

.hero .hero-images .image-stack .floating-card .agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details {
  flex: 1;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details p {
  margin: 0 0 8px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details .rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details .rating i {
  color: #ffc107;
  font-size: 10px;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details .rating span {
  margin-left: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .hero .hero-images {
    margin-top: 60px;
  }

  .hero .hero-images .image-stack {
    height: 400px;
  }

  .hero .hero-images .image-stack .main-image img {
    height: 350px;
  }

  .hero .hero-images .image-stack .secondary-image {
    top: -20px;
    left: -40px;
    width: 150px;
    height: 150px;
  }

  .hero .hero-images .image-stack .floating-card {
    bottom: 20px;
    left: -20px;
    width: 250px;
    padding: 16px;
  }

  .hero .search-form {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .hero .search-form {
    padding: 20px;
    margin-bottom: 30px;
  }

  .hero .hero-stats .stat-item {
    padding: 12px 8px;
  }

  .hero .hero-stats .stat-item h3 {
    font-size: 1.5rem;
  }

  .hero .hero-stats .stat-item p {
    font-size: 13px;
  }

  .hero .hero-images .image-stack {
    height: 300px;
  }

  .hero .hero-images .image-stack .main-image img {
    height: 250px;
  }

  .hero .hero-images .image-stack .main-image .property-tag {
    top: 12px;
    right: 12px;
    padding: 8px 12px;
  }

  .hero .hero-images .image-stack .main-image .property-tag .price {
    font-size: 16px;
  }

  .hero .hero-images .image-stack .secondary-image {
    width: 120px;
    height: 120px;
  }

  .hero .hero-images .image-stack .floating-card {
    bottom: 10px;
    left: 10px;
    width: 220px;
    padding: 12px;
  }

  .hero .hero-images .image-stack .floating-card .agent-details h5 {
    font-size: 14px;
  }

  .hero .hero-images .image-stack .floating-card .agent-details p {
    font-size: 11px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-us .content-wrapper .section-badge i {
  color: var(--accent-color);
}

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

.why-us .content-wrapper .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

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

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

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

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

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

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

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

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

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

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

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

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

.why-us .content-wrapper .action-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border: none;
  color: var(--contrast-color);
}

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

.why-us .content-wrapper .action-buttons .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 5px;
  overflow: hidden;
}

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

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

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

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

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

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

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

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

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

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

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

.call-to-action .cta-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

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

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

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

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

.call-to-action .benefits-list .benefit-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.call-to-action .benefits-list .benefit-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--default-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

