/* Property Show Page Styles */
.property-show {
  padding: 80px 0;
}

.property-show .property-gallery {
  margin-bottom: 50px;
}

.property-show .property-gallery .main-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 25px;
  background: var(--surface-color);
}

.property-show .property-gallery .main-image-container .main-gallery-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: block;
}

.property-show .property-gallery .main-image-container .main-gallery-image:hover {
  transform: scale(1.02);
}

.property-show .property-gallery .main-image-container .image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.property-show .property-gallery .main-image-container .image-nav-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-50%) scale(1.1);
}

.property-show .property-gallery .main-image-container .image-nav-btn.prev-image {
  left: 20px;
}

.property-show .property-gallery .main-image-container .image-nav-btn.next-image {
  right: 20px;
}

.property-show .property-gallery .thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 30px;
  justify-items: center;
}

.property-show .property-gallery .thumbnail-gallery .thumbnail-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 140px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-show .property-gallery .thumbnail-gallery .thumbnail-item.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.property-show .property-gallery .thumbnail-gallery .thumbnail-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-show .property-gallery .thumbnail-gallery .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Override main.css main image container styles */
.property-details .property-gallery .main-image-container {
  position: relative !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%) !important;
  margin-bottom: 25px !important;
  background: var(--surface-color) !important;
}

.property-details .property-gallery .main-image-container .main-gallery-image,
.property-details .property-gallery .main-image-container .main-property-image {
  width: 100% !important;
  height: 500px !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
  cursor: pointer !important;
  display: block !important;
}

.property-details .property-gallery .main-image-container .main-gallery-image:hover,
.property-details .property-gallery .main-image-container .main-property-image:hover {
  transform: scale(1.02) !important;
}

/* Override main.css navigation button styles */
.property-details .property-gallery .main-image-container .image-nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: color-mix(in srgb, var(--surface-color), transparent 20%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%) !important;
  border-radius: 50% !important;
  width: 55px !important;
  height: 55px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--default-color) !important;
  font-size: 22px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  z-index: 5 !important;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 85%) !important;
}

.property-details .property-gallery .main-image-container .image-nav-btn:hover {
  background: var(--accent-color) !important;
  color: var(--contrast-color) !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 40%) !important;
}

.property-details .property-gallery .main-image-container .image-nav-btn.prev-image {
  left: 25px !important;
}

.property-details .property-gallery .main-image-container .image-nav-btn.next-image {
  right: 25px !important;
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item {
  flex: unset !important;
  min-width: unset !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  border: 3px solid transparent !important;
  transition: all 0.3s ease !important;
  aspect-ratio: 16/9 !important;
  width: 100% !important;
  max-width: 140px !important;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item.active {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%) !important;
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 85%) !important;
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item:hover img {
  transform: scale(1.08) !important;
}

.property-show .property-overview {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-show .property-overview .price-tag {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.property-show .property-overview .property-status {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.property-show .property-overview .property-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.property-show .property-overview .property-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  margin-bottom: 25px;
}

.property-show .property-overview .property-location i {
  color: var(--accent-color);
  font-size: 18px;
}

.property-show .property-overview .property-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.property-show .property-overview .property-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: 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 90%);
}

.property-show .property-overview .property-stats .stat-item i {
  font-size: 24px;
  color: var(--accent-color);
  width: 30px;
  text-align: center;
}

.property-show .property-overview .property-stats .stat-item .stat-content {
  flex: 1;
}

.property-show .property-overview .property-stats .stat-item .stat-content .value {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  display: block;
  line-height: 1.2;
}

.property-show .property-overview .property-stats .stat-item .stat-content .label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.property-show .property-overview .property-features {
  margin-bottom: 30px;
}

.property-show .property-overview .property-features .features-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.property-show .property-overview .property-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.property-show .property-overview .property-features .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-show .property-overview .property-features .features-grid .feature-item i {
  color: var(--accent-color);
  font-size: 16px;
  width: 18px;
}

.property-show .property-overview .property-features .features-grid .feature-item span {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.property-show .property-overview .agent-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 25px;
}

.property-show .property-overview .agent-info .agent-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.property-show .property-overview .agent-info .agent-details {
  flex: 1;
}

.property-show .property-overview .agent-info .agent-details h5 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.property-show .property-overview .agent-info .agent-details .agent-title {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 3px;
}

.property-show .property-overview .agent-info .agent-details .agent-contact {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.property-show .property-overview .agent-info .agent-details .agent-contact i {
  margin-right: 5px;
  color: var(--accent-color);
}

.property-show .property-overview .contact-actions {
  display: flex;
  gap: 12px;
}

.property-show .property-overview .contact-actions .btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.property-show .property-overview .contact-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.property-show .property-overview .contact-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.property-show .property-overview .contact-actions .btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.property-show .property-overview .contact-actions .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.property-show .property-description {
  margin-bottom: 40px;
}

.property-show .property-description .section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.property-show .property-description .description-content {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 30px;
}

.property-show .property-description .description-content p {
  margin-bottom: 20px;
}

.property-show .property-description .description-content p:last-child {
  margin-bottom: 0;
}

.property-show .property-description .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.property-show .property-description .highlight-box .highlight-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-show .property-description .highlight-box .highlight-title i {
  color: var(--accent-color);
  font-size: 20px;
}

.property-show .property-description .highlight-box .highlight-content {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.property-show .property-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.property-show .property-details-grid .detail-section {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-show .property-details-grid .detail-section .section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.property-show .property-details-grid .detail-section .detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-show .property-details-grid .detail-section .detail-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-show .property-details-grid .detail-section .detail-list li:last-child {
  border-bottom: none;
}

.property-show .property-details-grid .detail-section .detail-list li .detail-label {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 500;
}

.property-show .property-details-grid .detail-section .detail-list li .detail-value {
  font-size: 15px;
  color: var(--heading-color);
  font-weight: 600;
}

.property-show .property-details-grid .detail-section .detail-list li .detail-value i {
  color: var(--accent-color);
  margin-right: 8px;
}

.property-show .property-details-grid .detail-section .amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.property-show .property-details-grid .detail-section .amenities-grid .amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-show .property-details-grid .detail-section .amenities-grid .amenity-item i {
  color: var(--accent-color);
  font-size: 18px;
  width: 20px;
}

.property-show .property-details-grid .detail-section .amenities-grid .amenity-item span {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.property-show .social-share-section {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 40px;
}

.property-show .social-share-section .share-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.property-show .social-share-section .share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.property-show .social-share-section .share-buttons .share-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-show .social-share-section .share-buttons .share-btn.facebook {
  background: #1877f2;
}

.property-show .social-share-section .share-buttons .share-btn.twitter {
  background: #1da1f2;
}

.property-show .social-share-section .share-buttons .share-btn.whatsapp {
  background: #25d366;
}

.property-show .social-share-section .share-buttons .share-btn.email {
  background: #ea4335;
}

.property-show .social-share-section .share-buttons .share-btn.copy-link {
  background: var(--heading-color);
}

.property-show .social-share-section .share-buttons .share-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 75%);
}

.property-show .social-share-section .share-buttons .share-btn.copy-link:hover {
  background: var(--accent-color);
}

.property-show .social-share-section .copy-feedback {
  margin-top: 15px;
  font-size: 14px;
  color: var(--accent-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.property-show .social-share-section .copy-feedback.show {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .property-show .property-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .property-show .property-gallery .main-image-container .main-property-image {
    height: 400px;
  }

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

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

@media (max-width: 768px) {
  .property-show {
    padding: 60px 0;
  }

  .property-show .property-gallery .main-image-container .main-property-image {
    height: 300px;
  }

  .property-show .property-gallery .thumbnail-gallery {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .property-show .property-overview {
    padding: 25px;
  }

  .property-show .property-overview .price-tag {
    font-size: 28px;
  }

  .property-show .property-overview .property-title {
    font-size: 20px;
  }

  .property-show .property-overview .property-stats {
    grid-template-columns: 1fr;
  }

  .property-show .property-overview .property-features .features-grid {
    grid-template-columns: 1fr;
  }

  .property-show .property-overview .agent-info {
    flex-direction: column;
    text-align: center;
  }

  .property-show .property-overview .contact-actions {
    flex-direction: column;
  }

  .property-show .property-overview .contact-actions .btn {
    justify-content: center;
  }

  .property-show .property-description .section-title {
    font-size: 24px;
  }

  .property-show .property-details-grid .detail-section {
    padding: 25px;
  }

  .property-show .property-details-grid .detail-section .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-show .social-share-section {
    padding: 25px;
  }

  .property-show .social-share-section .share-buttons {
    gap: 12px;
  }

  .property-show .social-share-section .share-buttons .share-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .property-show .property-gallery .thumbnail-gallery {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }

  .property-show .property-details-grid .detail-section .amenities-grid {
    grid-template-columns: 1fr;
  }

  .property-show .social-share-section .share-buttons {
    justify-content: center;
  }
}

/* Gallery Modal Styles */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal .modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.gallery-modal .modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.gallery-modal .modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-modal .modal-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.gallery-modal .modal-nav.prev {
  left: -75px;
}

.gallery-modal .modal-nav.next {
  right: -75px;
}

.gallery-modal .modal-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-modal .modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.gallery-modal .modal-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .gallery-modal .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .gallery-modal .modal-nav.prev {
    left: -55px;
  }

  .gallery-modal .modal-nav.next {
    right: -55px;
  }

  .gallery-modal .modal-close {
    top: -50px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Section Badge Styles */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 10%));
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 30%);
}

.section-badge i {
  font-size: 16px;
  opacity: 0.9;
}

.section-badge span {
  font-weight: 700;
}

/* Modern Card Styles */
.property-overview-cards {
  margin-bottom: 35px;
}

.property-overview-cards .section-badge {
  margin-bottom: 25px;
}

.property-overview-cards .overview-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 3px 15px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.property-overview-cards .overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px color-mix(in srgb, var(--default-color), transparent 88%);
}

.property-overview-cards .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 10%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--contrast-color);
  font-size: 20px;
  box-shadow: 0 3px 12px color-mix(in srgb, var(--accent-color), transparent 30%);
}

.property-overview-cards .card-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.property-overview-cards .card-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Description Content */
.property-description {
  margin-bottom: 50px;
}

.property-description .section-badge {
  margin-bottom: 30px;
}

.property-description .description-content {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.property-description .description-content p {
  margin-bottom: 20px;
}

.property-description .description-content p:last-child {
  margin-bottom: 0;
}

/* Details Grid */
.property-details-section {
  margin-bottom: 50px;
}

.property-details-section .section-badge {
  margin-bottom: 30px;
}

.property-details-section .details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-details-section .detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-details-section .detail-item:last-child {
  border-bottom: none;
}

.property-details-section .detail-label {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-details-section .detail-value {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
  text-align: right;
}

/* Location Content */
.property-location {
  margin-bottom: 60px;
}

.property-location .section-badge {
  margin-bottom: 30px;
}

.property-location .location-content {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-location .location-address {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.property-location .location-address i {
  color: var(--accent-color);
  font-size: 22px;
  margin-top: 5px;
}

.property-location .location-address strong {
  display: block;
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 8px;
}

.property-location .location-address p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.5;
}

.property-location .location-description p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin: 0;
}

/* Sidebar Styles */
.property-summary-sidebar {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 30px;
  position: sticky;
  top: 100px; /* Account for navbar height + some padding */
  max-height: calc(100vh - 120px); /* Prevent overflow */
  overflow-y: auto; /* Add scroll if needed */
  z-index: 1000; /* Ensure sidebar stays below navbar (navbar has z-index: 1030) */
}

.property-summary-sidebar .price-section {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-summary-sidebar .price-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
  display: block;
}

.property-summary-sidebar .price-period {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-summary-sidebar .featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #333;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 18px;
}

.property-summary-sidebar .featured-badge i {
  font-size: 16px;
}

.property-summary-sidebar .quick-stats {
  margin-bottom: 25px;
}

.property-summary-sidebar .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.property-summary-sidebar .stat-row:last-child {
  margin-bottom: 0;
}

.property-summary-sidebar .stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 13px;
}

.property-summary-sidebar .stat i {
  color: var(--accent-color);
  font-size: 16px;
  width: 18px;
}

.property-summary-sidebar .contact-actions {
  margin-bottom: 25px;
}

.property-summary-sidebar .contact-actions .btn {
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  padding: 12px 16px;
  font-size: 14px;
}

.property-summary-sidebar .contact-actions .btn:last-child {
  margin-bottom: 0;
}

.property-summary-sidebar .contact-actions .btn:last-child {
  margin-bottom: 0;
}

.property-summary-sidebar .contact-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 80%);
}

.property-summary-sidebar .share-section h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  text-align: center;
}

.property-summary-sidebar .share-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.property-summary-sidebar .share-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
}

.property-summary-sidebar .share-btn.facebook {
  background: #1877f2;
}

.property-summary-sidebar .share-btn.twitter {
  background: #1da1f2;
}

.property-summary-sidebar .share-btn.whatsapp {
  background: #25d366;
}

.property-summary-sidebar .share-btn.copy {
  background: #6c757d;
}

.property-summary-sidebar .share-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 70%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .property-show .property-gallery .main-image-container .main-gallery-image {
    height: 350px;
  }

  .property-overview-cards .overview-card {
    padding: 18px 15px;
    margin-bottom: 12px;
  }

  .property-overview-cards .card-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .property-overview-cards .card-value {
    font-size: 20px;
  }

  .property-overview-cards .card-label {
    font-size: 12px;
  }

  .property-description .description-content,
  .property-details-section .details-grid,
  .property-location .location-content {
    padding: 25px;
  }

  .property-summary-sidebar {
    padding: 25px;
  }

  .property-summary-sidebar .price-amount {
    font-size: 28px;
  }

  .property-gallery .gallery-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .property-gallery .gallery-nav.gallery-prev {
    left: 15px;
  }

  .property-gallery .gallery-nav.gallery-next {
    right: 15px;
  }

  .property-gallery .image-counter {
    bottom: 15px;
    right: 15px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .property-show .property-gallery .thumbnail-gallery,
  .property-gallery .thumbnail-gallery {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }

  .property-show .property-gallery .thumbnail-gallery .thumbnail-item,
  .property-gallery .thumbnail-item {
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .property-show .property-gallery .main-image-container .main-gallery-image {
    height: 280px;
  }

  .property-gallery .thumbnail-gallery {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
  }

  .property-details-section .details-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .property-summary-sidebar .price-amount {
    font-size: 24px;
  }

  .property-show .property-gallery .thumbnail-gallery .thumbnail-item,
  .property-gallery .thumbnail-item {
    max-width: 100px;
  }
}

/* Gallery Navigation Styles */
.property-gallery .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-gallery .gallery-nav:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.property-gallery .gallery-nav.gallery-prev {
  left: 20px;
}

.property-gallery .gallery-nav.gallery-next {
  right: 20px;
}

.property-gallery .image-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  backdrop-filter: blur(10px);
  color: var(--default-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.property-gallery .thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 30px;
  justify-items: center;
}

.property-gallery .thumbnail-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 140px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.property-gallery .thumbnail-item.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.property-gallery .thumbnail-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-gallery .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-gallery .thumbnail-item:hover img {
  transform: scale(1.08);
}

/* Virtual Tour Section */
.virtual-tour-section {
  margin-bottom: 40px;
}

.virtual-tour-content {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.tour-description {
  margin-bottom: 25px;
}

.tour-description p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.tour-actions .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.tour-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for virtual tour */
@media (max-width: 768px) {
  .virtual-tour-content {
    padding: 20px;
  }
  
  .tour-actions .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}
