
:root { 
  --background-color: #ffffff;
  --default-color: #000000cc;
  --heading-color: #bc8f3a;
  --accent-color: #a5772a;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}
/* 1- dbb351 2- a5772a*/
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #a5772a;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #a5772a;
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #062d5a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

.service-dtl {
    font-size: 40px!important;

    color: #ffffff!important;
}

.service-dtl span {
    color: #efa51b!important;
}


.ftco-navbar-light {
	position: absolute;
	top: 0 !important;
	left: 0;
	right: 0;
	z-index: 3;
	background:  #09284c !important;
    padding: 1% 0;
}
.logo{
    display: inline-block;
    position: absolute;
    width: 155px;
     left: 40px; 
	 top:8px;
    padding: 7px;
}

.spc {
	margin:0 10px;
	color: #b8962e;
	}

	.spc2 {
	margin-right: 10px;
	color: #b8962e;
	}


.mainhed { font-size: 50px; font-weight: bold; color: #ffffff;}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  margin: 0;
  font-weight: 600;
}

/* Gold Button */
.view-btn {
  padding: 4px 15px;
  border: 1px solid #c9a24d; /* gold border */
  color: #272726;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background-color: #c9a24d;
  color: #fff;
}



/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  position: relative;
  overflow: hidden;
  padding: 5% 0;
}

.features::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
  pointer-events: none;
}

.features .features-content {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .features .features-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}

.features .features-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .features .features-content h2 {
    font-size: 2rem;
  }
}

.features .features-content>p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.features .main-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
  .features .main-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.features .main-feature .feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 2rem;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features .main-feature .feature-text h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.features .main-feature .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
}

.features .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  border: none;
}

.features .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .features .features-grid {
    grid-template-columns: 1fr;
  }
}

.features .feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #ebebeb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.features .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.2s ease;
}



.features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  z-index: 2; /* bring on top of neighbors if needed */
}


.features .feature-card:hover::before {
  opacity: 1;
}

.features .feature-card:hover .icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, #D9B352, color-mix(in srgb, #A5772A, #6a11cb 30%));
  color: var(--contrast-color);
}

.features .feature-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, #D9B352, transparent 90%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #A5772A;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-size: 40px;
}

.features .feature-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}



/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  background: #09284c;
  padding: 0;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 99%, 0 88%);
  overflow: hidden;
}

/* Right Image */
.why-us-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section Title */
.why-us .section-title h2 {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-us .section-title span {
  font-size: 2.3rem;
  font-weight: 600;
  color: #d9b352;
}

/* Stat Cards */
.why-us .stats-section .stat-card {
  padding: 1.3rem;
  border-radius: 10px;
  border: 1px solid #a5772a;
  background: transparent;
  height: 100%;
  transition: all 0.3s ease;
}

.why-us .stats-section .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.why-us .stats-section .stat-icon i {
  font-size: 2rem;
  color: #efa51b;
}

.why-us .stats-section .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.why-us .stats-section p {
  font-size: 0.9rem;
  color: #ffffffd9;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .why-us {
    clip-path: none;
  }

  .why-us-image {
    min-height: 300px;
  }
}


/*--------------------------------------------------------------
# Property Details Section
--------------------------------------------------------------*/
.property-details .property-gallery .main-image-container {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.property-details .property-gallery .main-image-container .main-property-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  cursor: zoom-in;
}

.property-details .property-gallery .main-image-container .image-zoom-container {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  z-index: 10;
}

@media (max-width: 768px) {
  .property-details .property-gallery .main-image-container .image-zoom-container {
    display: none;
  }
}

.property-details .property-gallery .main-image-container .image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.property-details .property-gallery .main-image-container .image-nav-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.property-details .property-gallery .main-image-container .image-nav-btn.prev-image {
  left: 15px;
}

.property-details .property-gallery .main-image-container .image-nav-btn.next-image {
  right: 15px;
}

.property-details .property-gallery .thumbnail-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item {
  flex: 1;
  min-width: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item.active {
  border-color: var(--accent-color);
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.property-details .property-description {
  margin-top: 20px;
  padding: 30px 0;
  /* border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%); */
}

.property-details .property-description h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.property-details .property-description p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.property-details .property-amenities {
  margin-top: 20px;
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-amenities h3 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.property-details .property-amenities h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
}

.property-details .property-amenities .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-details .property-amenities .features-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.property-details .property-amenities .features-list li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}

.property-details .property-map {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-map h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.property-details .property-map .map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.property-details .property-map .map-container iframe {
  border-radius: 12px;
}

.property-details .property-map .location-details h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.property-details .property-map .location-details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.6;
}

.property-details .property-overview {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  top: 100px;
}

.property-details .property-overview .price-tag {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.property-details .property-overview .property-status {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.property-details .property-overview .property-address {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-overview .property-address h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}

.property-details .property-overview .property-address p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.property-details .property-overview .property-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.property-details .property-overview .property-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.property-details .property-overview .property-stats .stat-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 24px;
}

.property-details .property-overview .property-stats .stat-item .value {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  display: block;
}

.property-details .property-overview .property-stats .stat-item .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-details .property-overview .agent-info {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border-radius: 12px;
  border-top: 3px solid var(--accent-color);
}

.property-details .property-overview .agent-info .agent-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.property-details .property-overview .agent-info .agent-details h4 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.property-details .property-overview .agent-info .agent-details p {
  margin-bottom: 3px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.property-details .property-overview .agent-info .agent-details p i {
  margin-right: 5px;
  color: var(--accent-color);
}

.property-details .property-overview .agent-info .agent-details .agent-title {
  font-style: italic;
}

.property-details .property-overview .contact-form {
  margin-bottom: 30px;
}

.property-details .property-overview .contact-form h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.property-details .property-overview .contact-form .form-control {
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.property-details .property-overview .contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.property-details .property-overview .contact-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.property-details .property-overview .contact-form .btn-primary {
  background: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  transition: all 0.3s ease;
}

.property-details .property-overview .contact-form .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.property-details .property-overview .social-share h5 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.property-details .property-overview .social-share .share-buttons {
  display: flex;
  gap: 10px;
}

.property-details .property-overview .social-share .share-buttons .share-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.property-details .property-overview .social-share .share-buttons .share-btn.facebook {
  background: #3b5998;
}

.property-details .property-overview .social-share .share-buttons .share-btn.twitter {
  background: #1da1f2;
}

.property-details .property-overview .social-share .share-buttons .share-btn.whatsapp {
  background: #25d366;
}

.property-details .property-overview .social-share .share-buttons .share-btn.email {
  background: #ea4335;
}

.property-details .property-overview .social-share .share-buttons .share-btn.print {
  background: var(--heading-color);
}

.property-details .property-overview .social-share .share-buttons .share-btn:hover {
  transform: translateY(-2px);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .property-details .property-overview {
    position: static !important;
    top: auto !important;
    margin-top: 30px;
  }

  .property-details .property-overview .property-stats {
    grid-template-columns: 1fr;
  }

  .property-details .property-gallery .main-image-container .main-property-image {
    height: 300px;
  }

  .property-details .property-gallery .thumbnail-gallery .thumbnail-item {
    min-width: 80px;
  }

  .property-details .property-gallery .thumbnail-gallery .thumbnail-item img {
    height: 60px;
  }
}

/*--------------------------------------------------------------
# Agents Section
--------------------------------------------------------------*/
.agents .featured-agent .agent-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.agents .featured-agent .agent-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.agents .featured-agent .agent-image .agent-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .agents .featured-agent .agent-image img {
    height: 400px;
  }
}

.agents .featured-content {
  padding-left: 40px;
}

.agents .featured-content h3 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.agents .featured-content .position {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.agents .featured-content .specialties {
  margin-bottom: 25px;
}

.agents .featured-content .specialties .badge {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.agents .featured-content blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 25px 0;
  padding: 0;
  border: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.agents .featured-content .stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.agents .featured-content .stats .stat-item {
  text-align: center;
}

.agents .featured-content .stats .stat-item .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.agents .featured-content .stats .stat-item .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.agents .featured-content .contact-info {
  margin: 30px 0;
}

.agents .featured-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.agents .featured-content .contact-info .contact-item i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}

.agents .featured-content .contact-info .contact-item span {
  color: var(--default-color);
}

.agents .featured-content .social-links {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.agents .featured-content .social-links .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.agents .featured-content .social-links .social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.agents .featured-content .cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.agents .featured-content .cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.agents .featured-content .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.agents .featured-content .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.agents .featured-content .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.agents .featured-content .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .agents .featured-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .agents .featured-content .stats {
    justify-content: center;
  }

  .agents .featured-content .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .agents .featured-content .stats {
    gap: 15px;
  }

  .agents .featured-content .stats .stat-item .number {
    font-size: 1.5rem;
  }

  .agents .featured-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .agents .featured-content .cta-buttons .btn {
    width: 250px;
    text-align: center;
  }
}

.agents .section-subtitle {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

.agents .section-description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.agents .agent-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.agents .agent-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.agents .agent-card .agent-photo {
  position: relative;
  overflow: hidden;
}

.agents .agent-card .agent-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.agents .agent-card .agent-photo .agent-status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.agents .agent-card .agent-photo .agent-status.verified {
  background: #28a745;
  color: white;
}

.agents .agent-card .agent-photo .agent-status.new {
  background: #fd7e14;
  color: white;
}

.agents .agent-card .agent-photo .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agents .agent-card .agent-photo .hover-overlay .contact-actions {
  display: flex;
  gap: 15px;
}

.agents .agent-card .agent-photo .hover-overlay .contact-actions .action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--contrast-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.agents .agent-card .agent-photo .hover-overlay .contact-actions .action-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.agents .agent-card:hover .agent-photo img {
  transform: scale(1.05);
}

.agents .agent-card:hover .agent-photo .hover-overlay {
  opacity: 1;
}

.agents .agent-card .agent-info {
  padding: 25px;
  text-align: center;
}

.agents .agent-card .agent-info h5 {
  color: var(--heading-color);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.agents .agent-card .agent-info .role {
  color: var(--accent-color);
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.agents .agent-card .agent-info .location {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.agents .agent-card .agent-info .location i {
  margin-right: 5px;
  color: var(--accent-color);
}

.agents .agent-card .agent-info .languages {
  margin-bottom: 20px;
}

.agents .agent-card .agent-info .languages .lang-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 12px;
  margin-right: 5px;
}

.agents .agent-card .agent-info .view-listings {
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.agents .agent-card .agent-info .view-listings:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .agents .agent-card .agent-info h5 {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Agent Profile Section
--------------------------------------------------------------*/
.agent-profile .agent-profile-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.agent-profile .agent-profile-card .profile-background {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.agent-profile .agent-profile-card .profile-background .profile-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.agent-profile .agent-profile-card .profile-content {
  position: relative;
  padding: 2rem;
  margin-top: -80px;
}

.agent-profile .agent-profile-card .profile-content .agent-avatar {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.agent-profile .agent-profile-card .profile-content .agent-avatar .avatar-image {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  border: 4px solid var(--surface-color);
  object-fit: cover;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.agent-profile .agent-profile-card .profile-content .agent-avatar .status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-color);
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
}

.agent-profile .agent-profile-card .profile-content .agent-avatar .status-indicator i {
  color: #22c55e;
  font-size: 10px;
}

.agent-profile .agent-profile-card .profile-content .agent-avatar .status-indicator span {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .agent-profile .agent-profile-card .profile-content .agent-header .agent-name {
    font-size: 2rem;
  }
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials .title {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials .verification-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials .verification-badge i {
  font-size: 16px;
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats {
  display: flex;
  gap: 2rem;
}

@media (max-width: 576px) {
  .agent-profile .agent-profile-card .profile-content .agent-header .quick-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .star-rating {
  display: flex;
  gap: 2px;
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .star-rating i {
  color: #fbbf24;
  font-size: 14px;
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.agent-profile .main-content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}

@media (max-width: 1200px) {
  .agent-profile .main-content-grid {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .agent-profile .main-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.agent-profile .content-main .about-section,
.agent-profile .content-main .experience-section,
.agent-profile .content-main .service-areas {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 93%);
}

.agent-profile .content-main .about-section h3,
.agent-profile .content-main .experience-section h3,
.agent-profile .content-main .service-areas h3 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.agent-profile .content-main .about-section h3::after,
.agent-profile .content-main .experience-section h3::after,
.agent-profile .content-main .service-areas h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.agent-profile .content-main .about-section p,
.agent-profile .content-main .experience-section p,
.agent-profile .content-main .service-areas p {
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.agent-profile .content-main .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.agent-profile .content-main .highlight-box h4 {
  color: var(--heading-color);
  font-style: italic;
  font-weight: 500;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.agent-profile .content-main .timeline .timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.agent-profile .content-main .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.agent-profile .content-main .timeline .timeline-item:last-child::before {
  display: none;
}

.agent-profile .content-main .timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 30px;
  bottom: -2rem;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.agent-profile .content-main .timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 4px solid var(--surface-color);
  box-shadow: 0 0 0 2px var(--accent-color);
}

.agent-profile .content-main .timeline .timeline-item .timeline-content .timeline-year {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.agent-profile .content-main .timeline .timeline-item .timeline-content h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.agent-profile .content-main .timeline .timeline-item .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-size: 0.95rem;
}

.agent-profile .content-main .areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.agent-profile .content-main .areas-grid .area-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.agent-profile .content-main .areas-grid .area-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.agent-profile .content-main .areas-grid .area-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
}

.agent-profile .content-main .areas-grid .area-item h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.agent-profile .content-main .areas-grid .area-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  font-size: 0.9rem;
}

.agent-profile .content-sidebar .contact-widget,
.agent-profile .content-sidebar .quick-contact-form,
.agent-profile .content-sidebar .achievements-widget,
.agent-profile .content-sidebar .office-info {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 93%);
}

.agent-profile .content-sidebar .contact-widget h4,
.agent-profile .content-sidebar .contact-widget h5,
.agent-profile .content-sidebar .quick-contact-form h4,
.agent-profile .content-sidebar .quick-contact-form h5,
.agent-profile .content-sidebar .achievements-widget h4,
.agent-profile .content-sidebar .achievements-widget h5,
.agent-profile .content-sidebar .office-info h4,
.agent-profile .content-sidebar .office-info h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.agent-profile .content-sidebar .contact-methods .contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.agent-profile .content-sidebar .contact-methods .contact-method.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.agent-profile .content-sidebar .contact-methods .contact-method.primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.agent-profile .content-sidebar .contact-methods .contact-method:not(.primary) {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.agent-profile .content-sidebar .contact-methods .contact-method:not(.primary):hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.agent-profile .content-sidebar .contact-methods .contact-method i {
  font-size: 1.2rem;
  width: 20px;
}

.agent-profile .content-sidebar .contact-methods .contact-method .method-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.agent-profile .content-sidebar .contact-methods .contact-method .method-value {
  display: block;
  font-size: 0.9rem;
}

.agent-profile .content-sidebar .social-links {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}

.agent-profile .content-sidebar .social-links a {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.agent-profile .content-sidebar .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.agent-profile .content-sidebar .php-email-form input[type=text],
.agent-profile .content-sidebar .php-email-form input[type=email],
.agent-profile .content-sidebar .php-email-form select,
.agent-profile .content-sidebar .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.agent-profile .content-sidebar .php-email-form input[type=text]:focus,
.agent-profile .content-sidebar .php-email-form input[type=email]:focus,
.agent-profile .content-sidebar .php-email-form select:focus,
.agent-profile .content-sidebar .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.agent-profile .content-sidebar .php-email-form input[type=text]::placeholder,
.agent-profile .content-sidebar .php-email-form input[type=email]::placeholder,
.agent-profile .content-sidebar .php-email-form select::placeholder,
.agent-profile .content-sidebar .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.agent-profile .content-sidebar .php-email-form .btn-submit {
  width: 100%;
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.agent-profile .content-sidebar .php-email-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.agent-profile .content-sidebar .achievement-list .achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.agent-profile .content-sidebar .achievement-list .achievement-item:last-child {
  margin-bottom: 0;
}

.agent-profile .content-sidebar .achievement-list .achievement-item .achievement-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-profile .content-sidebar .achievement-list .achievement-item .achievement-icon i {
  font-size: 1.1rem;
}

.agent-profile .content-sidebar .achievement-list .achievement-item .achievement-text h6 {
  color: var(--heading-color);
  font-weight: 600;
  margin: 0 0 3px 0;
  font-size: 0.9rem;
}

.agent-profile .content-sidebar .achievement-list .achievement-item .achievement-text span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.8rem;
}

.agent-profile .content-sidebar .office-details .office-address,
.agent-profile .content-sidebar .office-details .office-hours {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.agent-profile .content-sidebar .office-details .office-address:last-child,
.agent-profile .content-sidebar .office-details .office-hours:last-child {
  margin-bottom: 0;
}

.agent-profile .content-sidebar .office-details .office-address i,
.agent-profile .content-sidebar .office-details .office-hours i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.agent-profile .content-sidebar .office-details .office-address span,
.agent-profile .content-sidebar .office-details .office-hours span {
  display: block;
}

.agent-profile .content-sidebar .office-details .office-address span:first-child,
.agent-profile .content-sidebar .office-details .office-hours span:first-child {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 3px;
}

.agent-profile .content-sidebar .office-details .office-address span:last-child,
.agent-profile .content-sidebar .office-details .office-hours span:last-child {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  line-height: 1.4;
}

.agent-profile .performance-metrics {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 93%);
}

.agent-profile .performance-metrics .metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.agent-profile .performance-metrics .metrics-grid .metric-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.agent-profile .performance-metrics .metrics-grid .metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.agent-profile .performance-metrics .metrics-grid .metric-card .metric-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-profile .performance-metrics .metrics-grid .metric-card .metric-icon i {
  font-size: 1.5rem;
}

.agent-profile .performance-metrics .metrics-grid .metric-card .metric-data .metric-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 5px;
}

.agent-profile .performance-metrics .metrics-grid .metric-card .metric-data .metric-label {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  font-weight: 500;
}


/* --------------------this is service page detail hover-------------------------- */
/* Base Styling */
.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: #ffffff;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Gold Icon */
.features-list li i {
  font-size: 18px;
  color: #c9a24d;
  transition: all 0.4s ease;
}

/* ✨ Shimmer Effect */
.features-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transition: all 0.6s ease;
}

/* Hover Magic */
.features-list li:hover {
  background: linear-gradient(135deg, #c9a24d, #f7e7b4);
  color: #ffffff;
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 20px 40px rgba(201, 162, 77, 0.45);
}

/* Shimmer Move */
.features-list li:hover::before {
  left: 140%;
}

/* Icon Fun Animation */
.features-list li:hover i {
  color: #ffffff;
  transform: scale(1.3) rotate(8deg);
}

/* 🎈 Gentle Bounce */
.features-list li:active {
  transform: scale(0.96);
}



/* ==============================
   PROPERTY STATS – HAPPY HOVER
================================ */

/* Grid Layout */
.property-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Stat Card */
.stat-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

/* Calm Background Hover */
.stat-item:hover {
  background: #fffaf0; /* champagne white */
  border-color: #e6d8aa;
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(201, 162, 77, 0.28);
}

/* Icon */
.stat-item i {
  font-size: 26px;
  color: #c9a24d;
  transition: 
    transform 0.45s cubic-bezier(.68,-0.55,.27,1.55),
    color 0.35s ease,
    filter 0.35s ease;
}

/* 🎉 Exciting Icon Hover */
.stat-item:hover i {
  transform: scale(1.45) rotate(8deg);
  color: #b8963e;
  filter: drop-shadow(0 6px 10px rgba(201,162,77,0.4));
}

/* Value */
.stat-item .value {
  font-size: 18px;
  font-weight: 700;
  color: #111827; /* strong readable */
  transition: color 0.3s ease;
}

/* Label */
.stat-item .label {
  font-size: 13px;
  color: #6b7280; /* soft grey */
  transition: color 0.3s ease;
}

/* Text stays clear on hover */
.stat-item:hover .value {
  color: #0f172a;
}

.stat-item:hover .label {
  color: #374151;
}

/* Soft Click Feedback */
.stat-item:active {
  transform: scale(0.96);
}

/* Mobile Friendly */
@media (max-width: 575px) {
  .property-stats {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------------------------------------- */
/* ================================
   Sticky Right Service Bar
================================ */
.service-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 999;
  width: 60px;
  pointer-events: auto;
}

/* ================================
   Service Item
================================ */
.service {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 60px;
  padding: 8px 12px;
  color: #252524;
  text-decoration: none;
  border-radius: 30px 0 0 30px;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  justify-content: flex-start;
  cursor: pointer;

  transition:
    width 0.35s ease,
    border 0.3s ease,
    border-radius 0.3s ease;

  animation: autoSelect 6s infinite;
}

/* ================================
   Icon
================================ */
.service i {
  font-size: 20px;
  min-width: 22px;
  color: #c5983a;
}

/* ================================
   Text (Hidden by default)
================================ */
.service span {
  opacity: 0;
  white-space: nowrap;
  font-size: 14px;
  color: #1f2020;
  transition: opacity 0.25s ease;
}

/* ================================
   Hover State
================================ */
.service:hover {
  width: 240px;
  border-radius: 30px;
  border-color: #c5983a;
  animation-play-state: paused;
}

.service:hover span {
  opacity: 1;
}

/* ================================
   Active / Selected Tab
================================ */
.service.active {
  width: 240px;
  border-radius: 30px;
  border-color: #c5983a;
  animation: none;
}

.service.active span {
  opacity: 1;
}

/* ================================
   Keyboard Tab Support
================================ */
.service:focus-visible {
  width: 240px;
  border-radius: 30px;
  border-color: #c5983a;
  outline: none;
}

.service:focus-visible span {
  opacity: 1;
}

/* ================================
   Auto Golden Border Animation
================================ */
@keyframes autoSelect {
  0%   { border-color: transparent; }
  15%  { border-color: rgba(218,165,32,0.9); }
  30%  { border-color: transparent; }
  100% { border-color: transparent; }
}

/* ================================
   Animation Delays
================================ */
.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 2s; }
.delay-4 { animation-delay: 3s; }
.delay-5 { animation-delay: 4s; }
.delay-6 { animation-delay: 5s; }

/* ================================
   Mobile Responsive
================================ */
@media (max-width: 600px) {
  .service:hover,
  .service.active,
  .service:focus-visible {
    width: 180px;
  }
}
