/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .featured-post {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.recent-blog-posts .featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.recent-blog-posts .featured-post:hover .post-title a {
  color: var(--accent-color);
}

.recent-blog-posts .featured-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.recent-blog-posts .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-blog-posts .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recent-blog-posts .featured-content {
  padding: 32px;
}

.recent-blog-posts .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.recent-blog-posts .post-title {
  margin: 0 0 20px 0;
}

.recent-blog-posts .post-title a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

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

.recent-blog-posts .post-excerpt {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.recent-blog-posts .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recent-blog-posts .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recent-blog-posts .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.recent-blog-posts .author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recent-blog-posts .author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.recent-blog-posts .read-time {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .read-more {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.recent-blog-posts .read-more::after {
  content: "→";
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.recent-blog-posts .read-more:hover::after {
  margin-left: 12px;
}

.recent-blog-posts .recent-post {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.recent-blog-posts .recent-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

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

.recent-blog-posts .recent-img {
  height: 120px;
  overflow: hidden;
}

.recent-blog-posts .recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-blog-posts .recent-content {
  padding: 20px;
}

.recent-blog-posts .recent-title {
  margin: 8px 0 12px 0;
}

.recent-blog-posts .recent-title a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.recent-blog-posts .recent-title a:hover {
  color: var(--accent-color);
}

.recent-blog-posts .recent-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.recent-blog-posts .recent-meta .author {
  color: var(--heading-color);
  font-weight: 500;
}

.recent-blog-posts .recent-meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
  color: var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.recent-blog-posts .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.recent-blog-posts .post-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 991px) {
  .recent-blog-posts .featured-post {
    margin-bottom: 40px;
  }

  .recent-blog-posts .featured-img {
    height: 250px;
  }

  .recent-blog-posts .featured-content {
    padding: 24px;
  }

  .recent-blog-posts .post-title a {
    font-size: 24px;
  }

  .recent-blog-posts .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .recent-blog-posts .recent-post {
    display: flex;
    margin-bottom: 16px;
  }

  .recent-blog-posts .recent-img {
    flex: 0 0 100px;
    height: 100px;
  }

  .recent-blog-posts .recent-content {
    flex: 1;
    padding: 16px;
  }

  .recent-blog-posts .recent-title a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .recent-blog-posts .post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .recent-blog-posts .recent-post {
    flex-direction: column;
  }

  .recent-blog-posts .recent-img {
    flex: none;
    height: 120px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .hero-content {
  margin-bottom: 4rem;
}

.about .hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .hero-content h2 {
    font-size: 2.2rem;
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--heading-color);
  }
}

.about .hero-content .hero-description {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.about .dual-image-layout {
  margin-bottom: 5rem;
}

.about .dual-image-layout .primary-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about .dual-image-layout .primary-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .dual-image-layout .primary-image-wrap img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about .dual-image-layout .primary-image-wrap img {
    height: 300px;
  }
}

.about .dual-image-layout .secondary-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 40px;
}

@media (max-width: 992px) {
  .about .dual-image-layout .secondary-image-wrap {
    top: 0;
    margin-top: 2rem;
  }
}

.about .dual-image-layout .secondary-image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .dual-image-layout .secondary-image-wrap img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about .dual-image-layout .secondary-image-wrap img {
    height: 280px;
  }
}

.about .dual-image-layout .floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--accent-color);
}

.about .dual-image-layout .floating-badge .badge-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about .dual-image-layout .floating-badge .badge-content i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about .dual-image-layout .floating-badge .badge-content span {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.about .features-showcase {
  margin-bottom: 5rem;
}

.about .features-showcase .feature-box {
  background: var(--surface-color);
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about .features-showcase .feature-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about .features-showcase .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about .features-showcase .feature-box:hover:before {
  transform: scaleX(1);
}

.about .features-showcase .feature-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.about .features-showcase .feature-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.about .features-showcase .feature-content h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .features-showcase .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.about .metrics-section {
  margin-bottom: 5rem;
}

.about .metrics-section .metrics-wrapper {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about .metrics-section .metric-item .metric-icon {
  margin-bottom: 1rem;
}

.about .metrics-section .metric-item .metric-icon i {
  font-size: 2.5rem;
  color: var(--contrast-color);
  opacity: 0.9;
}

.about .metrics-section .metric-item .metric-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .about .metrics-section .metric-item .metric-value {
    font-size: 2.2rem;
  }
}

.about .metrics-section .metric-item .metric-label {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about .testimonial-highlight {
  margin-bottom: 5rem;
}

.about .testimonial-highlight .testimonial-card {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  position: relative;
}

.about .testimonial-highlight .quote-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .testimonial-highlight .quote-icon i {
  color: var(--contrast-color);
  font-size: 1.3rem;
}

.about .testimonial-highlight blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  margin: 2rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .testimonial-highlight .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.about .testimonial-highlight .testimonial-author .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
}

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

.about .testimonial-highlight .testimonial-author .author-info {
  text-align: left;
}

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

.about .testimonial-highlight .testimonial-author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

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

.about .cta-section p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.about .cta-section .action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 576px) {
  .about .cta-section .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.about .cta-section .action-buttons .btn {
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.about .cta-section .action-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .cta-section .action-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about .cta-section .action-buttons .btn.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.about .cta-section .action-buttons .btn.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Properties Section
--------------------------------------------------------------*/
.properties .search-bar .search-wrapper {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.properties .search-bar .search-wrapper .search-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.properties .search-bar .search-wrapper .search-field .form-control,
.properties .search-bar .search-wrapper .search-field .form-select {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  background-color: transparent;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.properties .search-bar .search-wrapper .search-field .form-control:focus,
.properties .search-bar .search-wrapper .search-field .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.properties .search-bar .search-wrapper .search-field .form-control::placeholder,
.properties .search-bar .search-wrapper .search-field .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick {
  display: flex;
  gap: 4px;
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
  flex: 1;
  padding: 12px 8px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background: transparent;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn:hover,
.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn.active {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.properties .search-bar .search-wrapper .search-field .search-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 20%));
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.properties .search-bar .search-wrapper .search-field .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.properties .results-header .results-info h5 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.properties .results-header .results-info .text-muted {
  color: color-mix(in srgb, var(--default-color), transparent 40%) !important;
  font-size: 14px;
}

.properties .results-header .results-controls .sort-dropdown .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 13px;
  padding: 8px 12px;
  min-width: 180px;
}

.properties .results-header .results-controls .sort-dropdown .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.properties .results-header .results-controls .view-toggle {
  display: flex;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  overflow: hidden;
}

.properties .results-header .results-controls .view-toggle .view-btn {
  padding: 8px 12px;
  border: none;
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.properties .results-header .results-controls .view-toggle .view-btn:not(:last-child) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

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

.properties .results-header .results-controls .view-toggle .view-btn:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.properties .properties-container .view-masonry,
.properties .properties-container .view-rows {
  display: none;
}

.properties .properties-container .view-masonry.active,
.properties .properties-container .view-rows.active {
  display: block;
}

.properties .property-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  height: 100%;
}

.properties .property-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.properties .property-item .property-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.properties .property-item .property-link:hover {
  text-decoration: none;
  color: inherit;
}

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

.properties .property-item .property-image-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.properties .property-item .property-image-wrapper .property-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.properties .property-item .property-image-wrapper .property-status .status-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.featured {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.new {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.sale {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 20%));
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.rent {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.open {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.reduced {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 3;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn:hover {
  transform: scale(1.1);
  background-color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.favorite-btn:hover {
  background-color: #ef4444;
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.share-btn:hover {
  background-color: var(--accent-color);
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.gallery-btn:hover {
  background-color: var(--heading-color);
  color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn .gallery-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--accent-color);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.properties .property-item .property-image-wrapper:hover .property-actions {
  opacity: 1;
  transform: translateX(0);
}

.properties .property-item .property-details {
  padding: 24px;
}

.properties .property-item .property-details .property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.properties .property-item .property-details .property-header .property-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.properties .property-item .property-details .property-header .property-price span {
  font-size: 16px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-item .property-details .property-header .property-price .old-price {
  font-size: 18px;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-left: 8px;
}

.properties .property-item .property-details .property-header .property-type {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.properties .property-item .property-details .property-address {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.properties .property-item .property-details .property-address i {
  color: var(--accent-color);
  flex-shrink: 0;
}

.properties .property-item .property-details .property-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.properties .property-item .property-details .property-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--default-color);
}

.properties .property-item .property-details .property-specs .spec-item i {
  color: var(--accent-color);
  font-size: 15px;
}

.properties .property-item .property-details .property-agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.properties .property-item .property-details .property-agent-info .agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.properties .property-item .property-details .property-agent-info .agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.properties .property-item .property-details .property-agent-info .agent-details {
  flex: 1;
}

.properties .property-item .property-details .property-agent-info .agent-details strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.properties .property-item .property-details .property-agent-info .agent-details span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.properties .property-item .property-details .property-agent-info .agent-contact .contact-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.properties .property-item .property-details .property-agent-info .agent-contact .contact-btn:hover {
  transform: scale(1.1);
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.properties .property-row-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  margin-bottom: 24px;
}

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

.properties .property-row-item .property-row-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.properties .property-row-item .property-row-link:hover {
  text-decoration: none;
  color: inherit;
}

.properties .property-row-item .property-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 20px;
}

.properties .property-row-item .property-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

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

.properties .property-row-item .property-image-wrapper .property-status {
  position: absolute;
  top: 12px;
  left: 12px;
}

.properties .property-row-item .property-image-wrapper .property-status .status-badge {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-right: 6px;
}

.properties .property-row-item .property-image-wrapper .property-status .status-badge.featured {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
}

.properties .property-row-item .property-image-wrapper .property-status .status-badge.new {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.properties .property-row-item .property-row-content {
  padding: 20px 20px 20px 0;
}

.properties .property-row-item .property-row-content .property-info .property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price {
  text-align: right;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-type {
  display: block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-price small {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-row-item .property-row-content .property-info .property-address {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.properties .property-row-item .property-row-content .property-info .property-address i {
  color: var(--accent-color);
}

.properties .property-row-item .property-row-content .property-info .property-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.properties .property-row-item .property-row-content .property-info .property-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--default-color);
}

.properties .property-row-item .property-row-content .property-info .property-specs span i {
  color: var(--accent-color);
  font-size: 15px;
}

.properties .property-row-item .property-row-content .property-info .property-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.properties .property-row-item .property-row-content .property-info .property-agent span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
}

.properties .property-row-item .property-row-content .property-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.properties .property-row-item .property-row-content .property-actions .action-buttons {
  display: flex;
  gap: 8px;
}

.properties .property-row-item .property-row-content .property-actions .action-buttons .action-btn {
  padding: 8px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  background-color: transparent;
  color: var(--default-color);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.properties .property-row-item .property-row-content .property-actions .action-buttons .action-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.properties .property-row-item .property-row-content .property-actions .action-buttons .action-btn.favorite-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
}

.properties .property-row-item .property-row-content .property-actions .view-details-btn {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.properties .property-row-item .property-row-content .property-actions .view-details-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.properties .pagination-wrapper .pagination-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 14px;
}

.properties .pagination-wrapper .pagination-info p strong {
  color: var(--default-color);
  font-weight: 600;
}

.properties .pagination-wrapper .pagination .page-link {
  color: var(--default-color);
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 10px 16px;
  margin: 0 2px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.properties .pagination-wrapper .pagination .page-link:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

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

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

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

@media (max-width: 992px) {
  .properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
    font-size: 12px;
    padding: 10px 6px;
  }

  .properties .property-row-item .property-row-content .property-info .property-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .properties .property-row-item .property-row-content .property-info .property-header .property-type-price {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-type {
    margin-bottom: 0;
  }

  .properties .property-row-item .property-row-content .property-info .property-specs {
    gap: 16px;
  }

  .properties .property-row-item .property-row-content .property-actions {
    margin-top: 20px;
    align-items: flex-start;
  }

  .properties .property-row-item .property-row-content .property-actions .action-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .properties .property-row-item .property-row-content .property-actions .view-details-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .properties .search-bar .search-wrapper {
    padding: 20px;
  }

  .properties .search-bar .search-wrapper .search-field .bedroom-quick {
    flex-wrap: wrap;
  }

  .properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
    min-width: calc(20% - 3px);
  }

  .properties .results-header .results-controls {
    margin-top: 20px;
  }

  .properties .results-header .results-controls .d-flex {
    justify-content: space-between;
    width: 100%;
  }

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

  .properties .property-row-item .property-image-wrapper {
    margin: 20px 20px 0 20px;
  }

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

  .properties .pagination-wrapper .row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .properties .pagination-wrapper .pagination {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Property Details Section
--------------------------------------------------------------*/
.property-details .property-hero .hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-wrapper {
  height: auto !important;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.3));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px;
  z-index: 5;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge.for-rent {
  background: #28a745;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .featured-badge {
  background: #ff6b35;
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn i {
  font-size: 20px;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn:hover {
  background: var(--surface-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next,
.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  margin-top: -22.5px;
  z-index: 10;
  color: var(--accent-color);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:after,
.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 700;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:hover,
.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:hover {
  transform: scale(1.1);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next {
  right: 20px;
  transition: 0.3s;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
  left: 20px;
  transition: 0.3s;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-wrapper {
  height: auto !important;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img {
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img:hover {
  transform: scale(1.05);
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide {
  position: relative;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide.swiper-slide-thumb-active .thumbnail-img {
  border-color: var(--accent-color);
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide .photo-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
}

.property-details .property-info .property-header .property-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.property-details .property-info .property-header .property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.property-details .property-info .property-header .property-meta .address {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
}

.property-details .property-info .property-header .property-meta .address i {
  color: var(--accent-color);
  margin-right: 8px;
}

.property-details .property-info .property-header .property-meta .listing-id {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
}

.property-details .property-info .pricing-section {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.property-details .property-info .pricing-section .main-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
  margin-bottom: 10px;
}

.property-details .property-info .pricing-section .main-price .period {
  font-size: 24px;
  font-weight: 400;
  opacity: 0.9;
}

.property-details .property-info .pricing-section .price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.property-details .property-info .pricing-section .price-breakdown span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.property-details .property-info .pricing-section .price-breakdown .available {
  font-weight: 600;
}

.property-details .property-info .quick-stats .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card {
  background: var(--surface-color);
  padding: 20px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.property-details .property-info .quick-stats .stat-grid .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-icon {
  margin-bottom: 10px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.property-details .property-details h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

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

.property-details .property-details .features-grid h5 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.property-details .property-details .features-grid .feature-list {
  list-style: none;
  padding: 0;
}

.property-details .property-details .features-grid .feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .property-details .features-grid .feature-list li:last-child {
  border-bottom: none;
}

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

.property-details .floor-plan-section h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.property-details .floor-plan-section .floor-plan-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.property-details .floor-plan-section .floor-plan-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.property-details .floor-plan-section .floor-plan-card .plan-details {
  padding: 25px;
}

.property-details .floor-plan-section .floor-plan-card .plan-details h5 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.property-details .floor-plan-section .floor-plan-card .plan-details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.property-details .sticky-sidebar {
  position: sticky;
  top: 100px;
}

.property-details .sticky-sidebar .actions-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .actions-card .btn {
  font-weight: 600;
  border-radius: 12px;
  padding: 15px 20px;
}

.property-details .sticky-sidebar .actions-card .btn.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.property-details .sticky-sidebar .actions-card .btn.btn-primary i {
  margin-right: 8px;
}

.property-details .sticky-sidebar .actions-card .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.property-details .sticky-sidebar .actions-card .btn.btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.property-details .sticky-sidebar .agent-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .agent-card .agent-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-avatar {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-avatar .online-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  background: #28a745;
  border: 3px solid var(--surface-color);
  border-radius: 50%;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-role {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 10px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .stars {
  margin-bottom: 5px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .stars i {
  color: #ffc107;
  margin-right: 2px;
  font-size: 14px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .rating-text {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.property-details .sticky-sidebar .agent-card .agent-contact {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 15px;
  margin-bottom: 15px;
}

.property-details .sticky-sidebar .agent-card .agent-contact .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.property-details .sticky-sidebar .agent-card .agent-contact .contact-item i {
  color: var(--accent-color);
  margin-right: 10px;
  width: 16px;
}

.property-details .sticky-sidebar .agent-card .agent-contact .contact-item span {
  font-size: 14px;
  color: var(--default-color);
}

.property-details .sticky-sidebar .agent-card .btn {
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 20px;
}

.property-details .sticky-sidebar .agent-card .btn i {
  margin-right: 8px;
}

.property-details .sticky-sidebar .agent-card .btn.btn-success {
  background: #28a745;
  border-color: #28a745;
}

.property-details .sticky-sidebar .agent-card .btn.btn-outline {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.property-details .sticky-sidebar .agent-card .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.property-details .sticky-sidebar .contact-form-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .contact-form-card h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.property-details .sticky-sidebar .contact-form-card .form-control,
.property-details .sticky-sidebar .contact-form-card .form-select {
  color: var(--default-color);
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 12px;
  padding: 15px;
}

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

.property-details .sticky-sidebar .contact-form-card .form-control::placeholder,
.property-details .sticky-sidebar .contact-form-card .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.property-details .sticky-sidebar .contact-form-card .btn {
  background: var(--accent-color);
  border-color: var(--accent-color);
  font-weight: 600;
  border-radius: 12px;
  padding: 15px 20px;
}

.property-details .sticky-sidebar .calculator-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .calculator-card h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.property-details .sticky-sidebar .calculator-card .cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .sticky-sidebar .calculator-card .cost-item:last-of-type {
  border-bottom: none;
}

.property-details .sticky-sidebar .calculator-card .cost-item .cost-label {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
}

.property-details .sticky-sidebar .calculator-card .cost-item .cost-value {
  color: var(--heading-color);
  font-weight: 600;
}

.property-details .sticky-sidebar .calculator-card .total-cost {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 12px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-details .sticky-sidebar .calculator-card .total-cost .total-label {
  color: var(--heading-color);
  font-weight: 600;
}

.property-details .sticky-sidebar .calculator-card .total-cost .total-value {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 700;
}

.property-details .sticky-sidebar .similar-properties h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.property-details .sticky-sidebar .similar-properties .similar-property-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 15px;
  flex-shrink: 0;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info h6 {
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info .similar-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info .similar-specs {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 12px;
  margin: 0;
}

.property-details .location-section h3 {
  color: var(--heading-color);
  margin-bottom: 30px;
  font-weight: 600;
}

.property-details .location-section .map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.property-details .location-section .map-wrapper iframe {
  filter: grayscale(10%);
}

.property-details .location-section .neighborhood-info h5 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.property-details .location-section .neighborhood-info .poi-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .location-section .neighborhood-info .poi-item:last-child {
  border-bottom: none;
}

.property-details .location-section .neighborhood-info .poi-item i {
  color: var(--accent-color);
  margin-right: 15px;
  width: 20px;
  text-align: center;
  font-size: 18px;
}

.property-details .location-section .neighborhood-info .poi-item .poi-content {
  display: flex;
  flex-direction: column;
}

.property-details .location-section .neighborhood-info .poi-item .poi-content .poi-name {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 3px;
}

.property-details .location-section .neighborhood-info .poi-item .poi-content .poi-distance {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
}

@media (max-width: 992px) {
  .property-details .sticky-sidebar {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {

  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next,
  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
  }

  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:after,
  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:after {
    font-size: 14px;
  }

  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next {
    right: 10px;
  }

  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
    left: 10px;
  }

  .property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img {
    height: 60px;
  }

  .property-details .property-info .property-header .property-title {
    font-size: 28px;
  }

  .property-details .property-info .property-header .property-meta {
    flex-direction: column;
    gap: 10px;
  }

  .property-details .property-info .pricing-section .main-price {
    font-size: 36px;
  }

  .property-details .property-info .quick-stats .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .property-details .property-info .quick-stats .stat-grid .stat-card {
    padding: 15px 10px;
  }

  .property-details .similar-properties .similar-property-item {
    flex-direction: column;
    text-align: center;
  }

  .property-details .similar-properties .similar-property-item img {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    height: 120px;
  }
}

/*--------------------------------------------------------------
# Agents Section
--------------------------------------------------------------*/
.agents .agent-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.agents .agent-card:hover .contact-links {
  opacity: 1;
  transform: translateY(0);
}

.agents .agent-image {
  position: relative;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

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

.agents .agent-image .badge-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.agents .agent-image .badge-overlay span {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agents .agent-image .badge-overlay span.top-seller-badge {
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #333;
}

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

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

.agents .agent-image .badge-overlay span.awarded-badge {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: var(--contrast-color);
}

.agents .agent-info {
  text-align: center;
}

.agents .agent-info h4 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
}

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

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

.agents .agent-info .specialties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.agents .agent-info .specialties .specialty-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.agents .agent-info .contact-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.agents .agent-info .contact-links a {
  width: 40px;
  height: 40px;
  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: 16px;
  transition: all 0.3s ease;
}

.agents .agent-info .contact-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.agents .agent-info .view-listings-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agents .agent-info .view-listings-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.agents .btn-view-all-agents {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.agents .btn-view-all-agents:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .agents .agent-card {
    padding: 20px;
  }

  .agents .agent-image img {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .agents .agent-card {
    padding: 16px;
  }

  .agents .agent-image img {
    height: 200px;
  }

  .agents .agent-info .contact-links {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Agent Profile Section
--------------------------------------------------------------*/
.agent-profile .agent-photo-wrapper {
  position: relative;
}

.agent-profile .agent-photo-wrapper .agent-photo {
  border-radius: 15px;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.agent-profile .agent-photo-wrapper .agent-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.agent-profile .agent-photo-wrapper .agent-badge i {
  font-size: 12px;
}

.agent-profile .agent-info .agent-name {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .agent-profile .agent-info .agent-name {
    font-size: 2.5rem;
  }
}

.agent-profile .agent-info .agent-title {
  font-size: 1.25rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.agent-profile .agent-info .agent-tagline {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.agent-profile .contact-info-hero {
  margin-bottom: 2rem;
}

.agent-profile .contact-info-hero .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.agent-profile .contact-info-hero .contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
}

.agent-profile .contact-info-hero .contact-item span {
  font-weight: 500;
}

.agent-profile .hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.agent-profile .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.agent-profile .hero-actions .btn.btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.agent-profile .hero-actions .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.agent-profile .hero-actions .btn.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.agent-profile .hero-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .agent-profile .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.agent-profile .stats-section {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.agent-profile .stats-section .stat-item {
  text-align: center;
}

.agent-profile .stats-section .stat-item .stat-icon {
  width: 80px;
  height: 80px;
  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;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.agent-profile .stats-section .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.agent-profile .stats-section .stat-item .stat-label {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.agent-profile .stats-section .stat-item:hover .stat-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.agent-profile .sidebar-info .contact-card,
.agent-profile .sidebar-info .specialties-card,
.agent-profile .sidebar-info .certifications-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.agent-profile .sidebar-info .contact-card h4,
.agent-profile .sidebar-info .specialties-card h4,
.agent-profile .sidebar-info .certifications-card h4 {
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.agent-profile .sidebar-info .contact-details .contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.agent-profile .sidebar-info .contact-details .contact-detail i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 20px;
}

.agent-profile .sidebar-info .contact-details .contact-detail strong {
  display: block;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.agent-profile .sidebar-info .contact-details .contact-detail p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}

.agent-profile .sidebar-info .social-links {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}

.agent-profile .sidebar-info .social-links a {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.agent-profile .sidebar-info .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.agent-profile .sidebar-info .specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agent-profile .sidebar-info .specialty-tags .specialty-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.agent-profile .sidebar-info .cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.agent-profile .sidebar-info .cert-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.agent-profile .sidebar-info .cert-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.agent-profile .bio-content h3,
.agent-profile .bio-content h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.agent-profile .bio-content h3 {
  font-size: 2rem;
  font-weight: 600;
}

.agent-profile .bio-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
}

.agent-profile .bio-content p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.agent-profile .bio-content .achievements ul {
  list-style: none;
  padding: 0;
}

.agent-profile .bio-content .achievements ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.agent-profile .bio-content .achievements ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.agent-profile .testimonials-section .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.agent-profile .testimonials-section .swiper-wrapper {
  height: auto !important;
}

.agent-profile .testimonials-section .testimonial-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  position: relative;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-content p:before {
  content: "";
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: -15px;
  font-family: serif;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-author .author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-author .author-info h5 {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.agent-profile .testimonials-section .testimonial-card .testimonial-author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.agent-profile .testimonials-section .swiper-pagination {
  margin-top: 2rem;
}

.agent-profile .testimonials-section .swiper-pagination .swiper-pagination-bullet {
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.agent-profile .testimonials-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.agent-profile .contact-form-section {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 4rem;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 768px) {
  .agent-profile .contact-form-section {
    padding: 2rem 1.5rem;
  }
}

.agent-profile .contact-form-section h3 {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 2.2rem;
}

.agent-profile .contact-form-section .php-email-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.agent-profile .contact-form-section .php-email-form input[type=text],
.agent-profile .contact-form-section .php-email-form input[type=email],
.agent-profile .contact-form-section .php-email-form input[type=tel],
.agent-profile .contact-form-section .php-email-form select,
.agent-profile .contact-form-section .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.agent-profile .contact-form-section .php-email-form input[type=text]:focus,
.agent-profile .contact-form-section .php-email-form input[type=email]:focus,
.agent-profile .contact-form-section .php-email-form input[type=tel]:focus,
.agent-profile .contact-form-section .php-email-form select:focus,
.agent-profile .contact-form-section .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.agent-profile .contact-form-section .php-email-form input[type=text]::placeholder,
.agent-profile .contact-form-section .php-email-form input[type=email]::placeholder,
.agent-profile .contact-form-section .php-email-form input[type=tel]::placeholder,
.agent-profile .contact-form-section .php-email-form select::placeholder,
.agent-profile .contact-form-section .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.agent-profile .contact-form-section .php-email-form .btn {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.agent-profile .contact-form-section .php-email-form .btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-block {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--surface-color);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.services .service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .service-block:hover .service-image img {
  transform: scale(1.05);
}

.services .service-block:hover .image-overlay {
  opacity: 0.9;
}

.services .service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.services .service-block:nth-child(even) .service-content {
  text-align: right;
}

.services .service-block:nth-child(even) .service-content .service-number {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #ff6b35 20%), var(--accent-color));
}

.services .service-content {
  flex: 1;
  min-width: 0;
}

.services .service-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4285f4 20%));
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-info h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

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

.services .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.services .service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--default-color);
}

.services .service-features li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.services .service-features li:last-child {
  margin-bottom: 0;
}

.services .service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.services .service-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateX(5px);
  color: var(--contrast-color);
}

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

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

.services .service-image {
  width: 280px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

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

.services .service-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 30%), color-mix(in srgb, var(--accent-color), transparent 60%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services .service-image .image-overlay i {
  font-size: 48px;
  color: var(--contrast-color);
}

.services .cta-section {
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 30px;
  padding: 60px 50px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.services .cta-section:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url("../img/bg/dotted-world-1.webp") no-repeat center;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.services .cta-section .cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.services .cta-section .cta-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services .cta-section .cta-content p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services .cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.services .cta-section .cta-buttons .btn-primary,
.services .cta-section .cta-buttons .btn-secondary {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services .cta-section .cta-buttons .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .cta-section .cta-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.services .cta-section .cta-buttons .btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.services .cta-section .cta-buttons .btn-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .cta-section .cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.services .cta-section .cta-stats .stat-item {
  text-align: center;
}

.services .cta-section .cta-stats .stat-item .stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

.services .cta-section .cta-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .services .service-block {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }

  .services .service-block .service-content {
    text-align: center !important;
  }

  .services .service-block .service-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
  }

  .services .cta-section {
    padding: 40px 30px;
  }

  .services .cta-section .cta-content h3 {
    font-size: 28px;
  }

  .services .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services .cta-section .cta-stats {
    gap: 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .services .service-block {
    padding: 30px 25px;
  }

  .services .service-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .services .service-info h4 {
    font-size: 24px;
  }

  .services .service-features li {
    font-size: 14px;
  }

  .services .cta-section .cta-content h3 {
    font-size: 24px;
  }

  .services .cta-section .cta-stats .stat-number {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-content .service-hero {
  position: relative;
  margin-bottom: 2rem;
}

.service-details .service-content .service-hero img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-details .service-content .service-hero .service-badge i {
  font-size: 16px;
}

.service-details .service-content .service-overview {
  margin-bottom: 3rem;
}

.service-details .service-content .service-overview h2 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.service-details .service-content .service-overview .lead {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-details .service-content .service-overview p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-details .service-content .service-features {
  margin-bottom: 3rem;
}

.service-details .service-content .service-features h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.service-details .service-content .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-details .service-content .service-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-details .service-content .service-features .feature-item .feature-icon i {
  font-size: 20px;
}

.service-details .service-content .service-features .feature-item .feature-content h5 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.service-details .service-content .service-features .feature-item .feature-content p {
  color: var(--default-color);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.service-details .service-content .service-process {
  margin-bottom: 3rem;
}

.service-details .service-content .service-process h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.service-details .service-content .service-process .process-steps .process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.service-details .service-content .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 45px;
  width: 2px;
  height: calc(100% + 10px);
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.service-details .service-content .service-process .process-steps .process-step .step-content h5 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.service-details .service-content .service-process .process-steps .process-step .step-content p {
  color: var(--default-color);
  margin: 0;
  line-height: 1.5;
}

.service-details .service-content .service-stats {
  margin-bottom: 3rem;
}

.service-details .service-content .service-stats h3 {
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.service-details .service-content .service-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-details .service-content .service-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.service-details .service-content .service-stats .stat-item .stat-label {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}

.service-details .sidebar .contact-form-widget,
.service-details .sidebar .quick-info-widget,
.service-details .sidebar .testimonial-widget,
.service-details .sidebar .related-services-widget {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.service-details .sidebar .contact-form-widget h4,
.service-details .sidebar .quick-info-widget h4,
.service-details .sidebar .testimonial-widget h4,
.service-details .sidebar .related-services-widget h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-details .sidebar .contact-form-widget p {
  color: var(--default-color);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-details .sidebar .contact-form-widget .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 5px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.service-details .sidebar .contact-form-widget .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
  outline: 0;
}

.service-details .sidebar .contact-form-widget .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.service-details .sidebar .contact-form-widget .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.service-details .sidebar .contact-form-widget .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
}

.service-details .sidebar .quick-info-widget .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .sidebar .quick-info-widget .info-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .sidebar .quick-info-widget .info-list li:last-child {
  border-bottom: none;
}

.service-details .sidebar .quick-info-widget .info-list li i {
  color: var(--accent-color);
  font-size: 16px;
  width: 20px;
}

.service-details .sidebar .quick-info-widget .info-list li span {
  color: var(--default-color);
  font-size: 14px;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-content {
  margin-bottom: 1rem;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-content p {
  color: var(--default-color);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author .author-info h6 {
  color: var(--heading-color);
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author .author-info span {
  color: var(--default-color);
  font-size: 12px;
}

.service-details .sidebar .related-services-widget .service-links .service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--default-color);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: color 0.3s ease;
}

.service-details .sidebar .related-services-widget .service-links .service-link:last-child {
  border-bottom: none;
}

.service-details .sidebar .related-services-widget .service-links .service-link:hover {
  color: var(--accent-color);
}

.service-details .sidebar .related-services-widget .service-links .service-link:hover .bi-arrow-right {
  transform: translateX(5px);
}

.service-details .sidebar .related-services-widget .service-links .service-link .bi:first-child {
  color: var(--accent-color);
  font-size: 16px;
  width: 20px;
}

.service-details .sidebar .related-services-widget .service-links .service-link span {
  flex: 1;
  font-size: 14px;
}

.service-details .sidebar .related-services-widget .service-links .service-link .bi-arrow-right {
  font-size: 14px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .service-details .service-content .service-overview h2 {
    font-size: 2rem;
  }

  .service-details .service-content .service-overview .lead {
    font-size: 1.1rem;
  }

  .service-details .service-content .service-process .process-steps .process-step:not(:last-child)::after {
    left: 17px;
  }

  .service-details .service-content .service-process .process-steps .process-step .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .service-details .sidebar {
    margin-top: 2rem;
  }

  .service-details .sidebar .contact-form-widget,
  .service-details .sidebar .quick-info-widget,
  .service-details .sidebar .testimonial-widget,
  .service-details .sidebar .related-services-widget {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
  padding-top: 60px;
  padding-bottom: 20px;
}

.blog-hero .featured-post {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.blog-hero .featured-post img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.blog-hero .featured-post .post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem;
  color: var(--contrast-color);
}

.blog-hero .featured-post .post-content {
  max-width: 800px;
}

.blog-hero .featured-post .post-title {
  font-size: 2rem;
  margin: 1rem 0;
}

.blog-hero .featured-post .post-title a {
  color: var(--contrast-color);
}

.blog-hero .featured-post .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-hero .featured-post .post-excerpt {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.blog-hero .secondary-post {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.blog-hero .secondary-post .post-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-hero .secondary-post .post-content {
  padding: 1.5rem;
}

.blog-hero .secondary-post .post-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.blog-hero .secondary-post .post-title a {
  color: var(--heading-color);
}

.blog-hero .secondary-post .post-title a:hover {
  color: var(--accent-color);
}

.blog-hero .news-tabs {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
}

.blog-hero .news-tabs .nav-tabs {
  border: none;
  padding: 1rem 1rem 0;
  gap: 0.5rem;
  background-color: var(--surface-color);
}

.blog-hero .news-tabs .nav-tabs .nav-link {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--default-color);
  font-weight: 500;
  border-radius: 20px;
  transition: 0.3s;
}

.blog-hero .news-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.blog-hero .news-tabs .nav-tabs .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-hero .news-tabs .tab-content {
  padding: 1.5rem;
}

.blog-hero .tab-post {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-hero .tab-post:first-child {
  padding-top: 0;
}

.blog-hero .tab-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-hero .tab-post img {
  border-radius: 8px;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.blog-hero .tab-post .post-content {
  padding-left: 1rem;
}

.blog-hero .tab-post .post-title {
  font-size: 0.9375rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.blog-hero .tab-post .post-title a {
  color: var(--heading-color);
}

.blog-hero .tab-post .post-title a:hover {
  color: var(--accent-color);
}

.blog-hero .category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-right: 0.5rem;
}

.blog-hero .date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-hero .post-author {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

.blog-hero .post-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-hero .post-author a {
  color: var(--accent-color);
  font-weight: 500;
}

.blog-hero .post-author a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 991.98px) {
  .blog-hero .featured-post img {
    height: 400px;
  }

  .blog-hero .featured-post .post-title {
    font-size: 1.75rem;
  }

  .blog-hero .secondary-post .post-image img {
    height: 220px;
  }

  .blog-hero .news-tabs {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .blog-hero .featured-post img {
    height: 500px;
  }

  .blog-hero .featured-post .post-title {
    font-size: 1.5rem;
  }

  .blog-hero .featured-post .post-overlay {
    padding: 1.5rem;
  }

  .blog-hero .tab-post .post-title {
    font-size: 0.875rem;
  }

  .blog-hero .tab-post img {
    height: 80px;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}

.pagination-2 nav {
  position: relative;
}

.pagination-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.pagination-2 li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.pagination-2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pagination-2 li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pagination-2 li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pagination-2 li a i {
  font-size: 14px;
}

.pagination-2 li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .pagination-2 ul {
    gap: 4px;
  }

  .pagination-2 li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.blog-details .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.blog-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-header .title {
    font-size: 2.2rem;
  }
}

.blog-details .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.blog-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.blog-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .blog-details .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .blog-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.blog-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-details .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.blog-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .blog-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .blog-details .article-wrapper .table-of-contents {
    display: none;
  }
}

.blog-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.blog-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.blog-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover,
.blog-details .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.blog-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.blog-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.blog-details .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.blog-details .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.blog-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-footer .share-article {
  margin-bottom: 3rem;
}

.blog-details .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-details .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.blog-details .article-footer .share-article .share-buttons .share-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1DA1F2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267B2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077B5;
}

.blog-details .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-details .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .article-tags .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.blog-comment-form form {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9375rem;
}

.blog-comment-form .input-group {
  margin-bottom: 1rem;
  position: relative;
}

.blog-comment-form .input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown)+.error-text,
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown)+.error-text {
  opacity: 1;
  transform: translateY(0);
}

.blog-comment-form .input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .input-group .error-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #dc3545;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.blog-comment-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comment-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.blog-comment-form button[type=submit]:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 1.5rem;
  }

  .blog-comment-form .form-header h3 {
    font-size: 1.5rem;
  }

  .blog-comment-form button[type=submit] {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}
