/* ==============================
   PROJECT DETAIL PAGE - DARK THEME
   ============================== */

/* Banner */
.project-banner {
  position: relative;
  min-height: 277px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 60px 0 40px;
}

.project-banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}

.project-breadcrumb {
  margin-bottom: 15px;
}

.project-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
}

.project-breadcrumb .breadcrumb-item.active {
  color: #c9a84c;
  font-size: 13px;
}

.project-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

.project-banner-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.project-banner-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.project-banner-badge {
  background: #c9a84c;
  color: #fff;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.project-banner-badge.badge-plot {
  background: #0f2a3c;
}

.project-banner-badge.badge-bhk {
  background: #2e7d32;
}

.project-banner-location,
.project-banner-status {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.project-banner-location i,
.project-banner-status i {
  color: #c9a84c;
  margin-right: 6px;
}

.project-banner-price {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 4px 16px;
  border-radius: 20px;
}

.project-banner-price i {
  color: #c9a84c;
  margin-right: 4px;
  font-size: 13px;
}

/* ===== DETAIL SECTION - DARK ===== */
.project-detail-section {
  padding: 50px 0 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
.project-detail-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}
.project-detail-section > .container {
  position: relative;
  z-index: 1;
}

/* Overview Title */
.overview-main-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
}

/* Gallery */
.project-gallery {
  margin-bottom: 35px;
}

.project-gallery-main {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.project-gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #111;
}

.project-gallery-thumbs {
  display: flex;
  gap: 10px;
}

.project-thumb {
  width: 25%;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.3s;
}

.project-thumb.active {
  border-color: #c9a84c;
}

.project-thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

/* Overview Text Blocks */
.overview-block {
  margin-bottom: 35px;
}

.overview-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.overview-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  white-space: pre-line;
}

/* Specs Grid */
.project-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.project-spec-item {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 3px solid #c9a84c;
}

.spec-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* Highlights */
.project-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.highlight-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: all 0.3s;
}

.highlight-card:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-3px);
}

.highlight-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  color: #c9a84c;
  font-size: 20px;
}

.highlight-text {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
}

/* ===== LOCATION MAP ===== */
.project-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.project-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* ===== DOCUMENTS ===== */
.project-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.project-doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 18px;
  text-decoration: none;
  transition: all 0.3s;
}

.project-doc-item:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
}

.doc-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-icon i {
  color: #c9a84c;
  font-size: 18px;
}

.doc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.doc-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.doc-size {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
}

.doc-download {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.doc-download i {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: color 0.3s;
}

.project-doc-item:hover .doc-download {
  border-color: #c9a84c;
  background: rgba(201, 168, 76, 0.1);
}

.project-doc-item:hover .doc-download i {
  color: #c9a84c;
}

/* ===== RIGHT SIDEBAR ===== */
.info-sidebar {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 20px;
}

.info-card-header {
  background: #c9a84c;
  padding: 20px 25px;
}

.info-card-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.info-card-price {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.info-card-body {
  padding: 25px;
}

.info-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.info-detail-row:last-of-type {
  border-bottom: none;
}

.info-detail-row i {
  color: rgba(255,255,255,0.35);
  font-size: 15px;
  width: 18px;
  text-align: center;
}

/* Buttons */
.btn-book-viewing {
  display: block;
  background: #c9a84c;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: background 0.3s;
}

.btn-book-viewing:hover {
  background: #b89640;
  color: #fff;
}

.btn-request-brochure {
  display: block;
  background: transparent;
  color: #fff;
  text-align: center;
  padding: 13px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: 12px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
}

.btn-request-brochure:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

/* Card Image */
.info-card-image {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.info-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ===== ENQUIRY SECTION ===== */
.enquiry-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 35px;
}

.enquiry-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.enquiry-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 25px;
}

.enquiry-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  transition: border-color 0.3s;
}

.enquiry-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.enquiry-input:focus {
  border-color: #c9a84c;
  background: rgba(255,255,255,0.08);
  box-shadow: none;
  color: #fff;
}

.btn-enquiry-submit {
  width: 100%;
  background: #c9a84c;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s;
}

.btn-enquiry-submit:hover {
  background: #b89640;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: #0a1a26;
  padding: 80px 0;
}
.testimonials-label {
  display: inline-block;
  color: #c9a84c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.testimonials-title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 30px;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.google-icon {
  font-size: 20px;
  font-weight: 700;
  color: #4285f4;
}
.google-count {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.google-star {
  color: #fbbc05;
  font-size: 14px;
}
.google-text {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.testimonials-desc {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.3);
}
.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.testimonial-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-location {
  color: #c9a84c;
  font-size: 13px;
  font-weight: 500;
}
.testimonial-quote {
  font-size: 60px;
  line-height: 1;
  color: #c9a84c;
  opacity: 0.5;
  font-family: Georgia, serif;
}
.testimonial-text {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== DREAM HOME CTA BANNER ===== */
.dream-home-cta {
  position: relative;
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600') center center / cover no-repeat;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.dream-home-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.dream-home-cta .container {
  z-index: 2;
}
.dream-home-title {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.dream-home-desc {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-style: italic;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== RELATED PROJECTS (reuses properties.css) ===== */
.related-properties-section {
  margin-top: 0;
}

/* ===== MOBILE STICKY BOOK BUTTON ===== */
.mobile-book-btn {
  display: none;
}

@media (max-width: 991px) {
  .mobile-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 64px;
    bottom: calc(64px + env(safe-area-inset-bottom));
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #c9a84c, #b89640);
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-decoration: none;
    z-index: 1049;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s;
    margin: -3px;
  }

  .mobile-book-btn:hover {
    background: linear-gradient(135deg, #b89640, #a68530);
    color: #fff;
  }

  .project-detail-section {
    padding: 30px 0 80px;
  }
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
  background: #0c1e2a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.booking-modal-header {
  background: #c9a84c;
  border-bottom: none;
  padding: 18px 25px;
}

.booking-modal-header .modal-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.booking-modal-body {
  padding: 25px;
}

.booking-label {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.booking-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  transition: border-color 0.3s;
}

.booking-input::placeholder {
  color: rgba(255,255,255,0.25);
}

.booking-input:focus {
  border-color: #c9a84c;
  background: rgba(255,255,255,0.08);
  box-shadow: none;
  color: #fff;
}

select.booking-input {
  appearance: auto;
  -webkit-appearance: auto;
}

select.booking-input option {
  background: #0c1e2a;
  color: #fff;
}

.btn-booking-submit {
  width: 100%;
  background: #c9a84c;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s;
  margin-top: 5px;
}

.btn-booking-submit:hover {
  background: #b89640;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .project-banner {
    padding-top: 80px;
    min-height: 240px;
  }

  .project-banner-title {
    font-size: 28px;
  }

  .project-banner-meta {
    gap: 10px;
  }

  .project-banner-desc {
    font-size: 13px;
  }

  .overview-main-title {
    font-size: 28px;
  }

  .project-gallery-main img {
    height: 280px;
  }

  .project-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-sidebar {
    position: static;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .project-banner {
    min-height: 182px;
    padding: 86px 15px 25px;
  }

  .project-banner-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .project-banner-meta {
    gap: 8px;
  }

  .project-banner-badge {
    font-size: 11px;
    padding: 3px 12px;
  }

  .project-banner-location,
  .project-banner-status {
    font-size: 12px;
  }

  .project-banner-price {
    font-size: 13px;
    padding: 3px 12px;
  }

  .project-banner-desc {
    font-size: 12px;
    margin-top: 5px;
  }

  .project-breadcrumb {
    margin-bottom: 8px;
  }

  .project-breadcrumb .breadcrumb-item a,
  .project-breadcrumb .breadcrumb-item.active {
    font-size: 11px;
  }

  .overview-main-title {
    font-size: 24px;
  }

  .project-specs-grid {
    grid-template-columns: 1fr;
  }

  .project-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-docs-grid {
    grid-template-columns: 1fr;
  }

  .project-map iframe {
    height: 250px;
  }

  .project-thumb img {
    height: 60px;
  }

  .enquiry-block {
    padding: 25px;
  }

  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-title {
    font-size: 24px;
    margin-bottom: 20px;
  }



  .dream-home-cta {
    padding: 70px 0;
  }

  .dream-home-title {
    font-size: 30px;
  }

  .dream-home-desc {
    font-size: 13px;
  }
}
