/* ...existing code from property-details.css... */
/* Modern, clean property details styles - centered, max-width, and visually balanced */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
.hr-prop-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  font-family: var(--hr-font);
}
.hr-prop-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.hr-prop-carousel {
  flex: 2;
  min-width: 320px;
  position: relative;
  height: 420px;
  background: var(--hr-bg-alt, #e9eef6);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.hr-prop-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.hr-prop-carousel-img.active {
  opacity: 1;
  z-index: 2;
}
.hr-prop-carousel-prev, .hr-prop-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--hr-bg, #fff);
  color: var(--hr-primary, #1a237e);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.hr-prop-carousel-prev:hover, .hr-prop-carousel-next:hover {
  background: var(--hr-primary, #1a237e);
  color: var(--hr-on-primary, #fff);
  box-shadow: 0 4px 16px rgba(26,35,126,0.12);
}
.hr-prop-carousel-prev { left: 18px; }
.hr-prop-carousel-next { right: 18px; }
.hr-prop-carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hr-prop-carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #1a237e;
  opacity: 0.7;
  cursor: pointer;
  transition: background 0.2s;
}
.hr-prop-carousel-dots .dot.active {
  background: #1a237e;
  opacity: 1;
}
.hr-prop-status-label {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #1a237e;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 18px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(26,35,126,0.13);
  letter-spacing: 0.03em;
  font-family: 'Playfair Display', serif;
}
.hr-prop-type-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.10);
  padding: 7px 18px 7px 10px;
  z-index: 10;
}
.hr-prop-type-card img {
  width: 32px;
  height: 32px;
  display: block;
}
.hr-prop-type-card span {
  font-size: 1.08rem;
  color: #1a237e;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.hr-prop-type-card-info {
  position: static;
  margin: 0 0 1rem 0;
  background: #f6f7fb;
  box-shadow: 0 2px 8px rgba(26,35,126,0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 10px;
  width: fit-content;
}
.hr-prop-type-card-info img {
  width: 32px;
  height: 32px;
  display: block;
}
.hr-prop-type-card-info span {
  font-size: 1.08rem;
  color: #1a237e;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.hr-prop-hero-info {
  flex: 1;
  min-width: 260px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 2.2rem 1.7rem 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
.hr-prop-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a237e;
  margin: 0 0 0.5rem 0;
  font-family: 'Playfair Display', serif;
}
.hr-prop-address {
  font-size: 1.13rem;
  color: #374151;
  margin-bottom: 0.5rem;
}
.hr-prop-price {
  font-size: 1.6rem;
  color: #0d47a1;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.hr-prop-key {
  display: flex;
  gap: 1.2rem;
  font-size: 1.08rem;
  color: #263238;
  margin-top: 0.5rem;
}
.hr-prop-key-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.08rem;
  color: #263238;
}
.hr-prop-content {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.hr-prop-maincol {
  flex: 2;
  min-width: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 2.2rem 1.7rem 2rem 1.7rem;
}
.hr-prop-desc {
  font-size: 1.15rem;
  color: #374151;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hr-prop-video {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hr-prop-map {
  margin: 2.5rem 0 0 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  min-height: 320px;
}
.hr-prop-side {
  flex: 1;
  min-width: 260px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 2.2rem 1.7rem 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0.5rem;
}
.hr-prop-agent h3 {
  margin: 0 0 0.5em 0;
  font-size: 1.13rem;
  color: #1a237e;
}
.hr-prop-agent strong {
  font-size: 1.08rem;
}
.hr-prop-downloads h3 {
  margin: 0 0 0.5em 0;
  font-size: 1.13rem;
  color: #1a237e;
}
.hr-prop-downloads ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hr-prop-downloads li {
  margin-bottom: 0.5em;
}
.hr-prop-agent-card img {
  border: 3px solid #1a237e;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(26,35,126,0.12);
  transition: box-shadow 0.3s ease;
}
.hr-prop-agent-card img:hover {
  box-shadow: 0 6px 24px rgba(26,35,126,0.18);
}
.hr-prop-agent-card img,
.team-card .team-photo {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50%;
  /* Remove border and box-shadow for a clean look */
  border: none;
  box-shadow: none;
}
.hr-prop-agent-card .hr-prop-agent-info > .hr-prop-agent-social,
.team-card .team-bio > .team-social {
  margin-top: 16px !important;
  padding-top: 8px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 8px;
}
/* Styling for Market Insights, Downloads, Google Ads, and Contact Us button */
.hr-prop-market-insights, .hr-prop-downloads, .hr-prop-google-ads {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hr-prop-market-insights h3, .hr-prop-downloads h3, .hr-prop-google-ads h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a237e;
}
.hr-prop-downloads ul {
  list-style: none;
  padding: 0;
}
.hr-prop-downloads ul li {
  margin-bottom: 0.5rem;
}
.hr-prop-downloads ul li a {
  color: #1a237e;
  text-decoration: none;
}
.hr-prop-downloads ul li a:hover {
  text-decoration: underline;
}
.cta-button {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: var(--hr-primary, #1a237e);
  color: var(--hr-on-primary, #fff);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--hr-font, 'Playfair Display', serif);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--hr-primary-hover, #3949ab);
  color: var(--hr-on-primary, #fff);
}
.hr-prop-contact-btn {
  margin-top: 8px;
}
.hr-prop-agent-flex {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.hr-prop-agent-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 16px;
  object-fit: cover;
  background: #f5f5f5;
}
.hr-prop-agent-info {
  flex: 1;
}
.hr-prop-agent-name {
  margin: 4px 0;
  font-weight: bold;
  font-size: 1.1rem;
}
.hr-prop-agent-phone {
  margin: 4px 0;
  color: #555;
}
.hr-prop-agent-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.hr-prop-downloads-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hr-prop-download-link {
  color: #1a237e;
  text-decoration: none;
  transition: color 0.2s;
}
.hr-prop-download-link:hover, .hr-prop-download-link:focus {
  color: #3949ab;
  text-decoration: underline;
}

.hr-prop-insights-desc {
  margin-bottom: 12px;
}
.hr-prop-insights-btn {
  display: inline-block;
  width: auto;
  margin-top: 4px;
}

.hr-prop-ads-placeholder {
  width: 100%;
  height: 250px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
}
.hr-prop-ads-text {
  color: #888;
  font-size: 1rem;
}

/* Tablet breakpoint */
@media (max-width: 900px) {
  .hr-prop-main {
    padding: 1.2rem 0.5rem;
  }
  .hr-prop-hero {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .hr-prop-carousel {
    min-width: 0;
    width: 100%;
    height: 220px;
    border-radius: 10px;
    position: relative;
  }
  .hr-prop-title {
    font-size: 1.5rem;
  }
  .hr-prop-hero-info {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    gap: 0.7rem;
    width: 100%;
    min-width: 0;
  }
  .hr-prop-content {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }
  .hr-prop-maincol, .hr-prop-side {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .hr-prop-side {
    gap: 1.2rem;
    margin-top: 0;
    background: #f8f9fb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(34,64,142,0.04);
  }
  .hr-prop-agent-img {
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }
  .hr-prop-ads-placeholder {
    height: 100px;
  }
}
/* Mobile breakpoint */
@media (max-width: 600px) {
  .hr-prop-main {
    padding: 0.5rem 0.2rem;
  }
  .hr-prop-hero {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .hr-prop-carousel {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .hr-prop-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  .hr-prop-hero-info {
    padding: 1rem;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  .hr-prop-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .hr-prop-price {
    font-size: 1.2rem;
    color: #0d47a1;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .hr-prop-key {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1rem;
  }
  .hr-prop-side, .hr-prop-maincol {
    padding: 0.7rem 0.2rem;
  }
  .hr-prop-side {
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(34,64,142,0.04);
  }
  .hr-prop-agent-img {
    width: 48px;
    height: 48px;
  }
  .hr-prop-ads-placeholder {
    height: 70px;
  }
}

/* --- End Property Details Page Refactor --- */