/* ===========================
   TERA GHAR — Property Detail
   =========================== */

/* HERO */
.prop-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  margin-top: 0;
}
.prop-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: slowZoom 12s ease-in-out infinite alternate;
}
.prop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
}
.prop-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.prop-breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.prop-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.prop-breadcrumb a:hover { color: var(--gold); }
.prop-hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.prop-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.prop-hero-location { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.prop-hero-price {
  font-family: var(--font-body);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212,175,55,0.4);
}

/* LAYOUT */
.prop-page { background: var(--dark); padding: 40px 0 80px; }
.prop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* QUICK STATS */
.prop-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.qs-item {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.qs-item:last-child { border-right: none; }
.qs-item:hover { background: rgba(212,175,55,0.05); }
.qs-icon  { font-size: 22px; margin-bottom: 6px; }
.qs-val   { font-size: 15px; font-weight: 700; color: var(--white); }
.qs-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; margin-top: 2px; }

/* SECTIONS */
.prop-section { margin-bottom: 36px; }
.prop-section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.prop-description {
  font-size: 15px;
  line-height: 1.85;
  color: #bbb;
  font-weight: 300;
}

/* AMENITIES */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 10px 14px;
}
.amenity-check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* DETAILS TABLE */
.details-table { display: flex; flex-direction: column; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.dt-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
}
.dt-row:last-child { border-bottom: none; }
.dt-row:nth-child(odd) { background: rgba(255,255,255,0.02); }
.dt-key { color: var(--text-muted); font-weight: 500; }
.dt-val { color: var(--white); font-weight: 600; text-align: right; }

/* RELATED */
.related-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.related-card {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition);
}
.related-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.related-img {
  width: 100px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-3);
}
.related-body { padding: 14px 14px 14px 0; }
.related-price { font-size: 15px; font-weight: 800; color: var(--gold); }
.related-title { font-size: 14px; font-weight: 600; color: var(--white); margin: 4px 0; }
.related-city  { font-size: 12px; color: var(--text-muted); }

/* SIDEBAR */
.prop-sidebar { display: flex; flex-direction: column; gap: 16px; }

.enquiry-card {
  background: rgba(10,10,10,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: sticky;
  top: 90px;
}
.enquiry-price {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.enquiry-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.enquiry-city  { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

.enquiry-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.ef-group input,
.ef-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: var(--transition);
}
.ef-group input:focus,
.ef-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
.ef-group textarea { resize: vertical; }

.enquiry-success {
  text-align: center;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.es-icon {
  width: 52px; height: 52px;
  background: rgba(34,197,94,0.15);
  border: 2px solid rgba(34,197,94,0.4);
  border-radius: 50%;
  font-size: 24px;
  color: #22c55e;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.enquiry-success strong { color: var(--white); font-size: 18px; }
.enquiry-success p { color: var(--text-muted); font-size: 13px; }

.enquiry-or {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 14px 0 12px;
}
.enquiry-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.enquiry-contact:hover { border-color: var(--gold); color: var(--gold); }
.enquiry-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 13px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.enquiry-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }

/* TRUST BOX */
.trust-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}

/* RESPONSIVE */
@media (min-width: 640px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid   { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .prop-hero { height: 560px; }
  .prop-hero-content { padding: 40px 40px; }
  .prop-container { grid-template-columns: 1fr 360px; }
  .related-grid   { grid-template-columns: 1fr; }
}
