:root{
  --hrp-primary: #2c3e50;
  --hrp-accent: #e74c3c;
  --hrp-success: #27ae60;
  --hrp-border: #ecf0f1;
  --hrp-muted: #7f8c8d;
  --hrp-light: #f8f9fa;
  --hrp-dark: #1a1a1a;
}

/* Hero Section */

.project-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f1f5f6;
  isolation: isolate;
}

.project-hero__container {
  position: relative;
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(56px, 7vw, 90px) clamp(24px, 8vw, 140px) clamp(88px, 10vw, 130px);
  margin: 0;
}

.project-hero__media {
  position: absolute;
  inset: 0;
  background: var(--hero-image) center bottom/cover no-repeat;
  z-index: 1;
}

.project-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.project-hero__content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 540px;
}

.project-hero__info-section {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
background: linear-gradient(90deg, rgba(214, 184, 132, 0.95) 0%, rgba(214, 184, 132, 0.85) 50%, rgba(214, 184, 132, 0.75) 100%);
  padding: 35px 45px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  position: relative;
}

.project-hero__info-section .project-hero__logo {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.project-hero__info-section .project-hero__text {
  flex: 1;
}

.project-hero__info-section .project-hero__title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.project-hero__info-section .project-hero__meta {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  opacity: 1;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.project-hero__form-wrap {
  position: relative;
  z-index: 2;
  max-width: 460px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.project-hero__form-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  padding: 38px 42px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.35);
  border: 1px solid rgba(0,0,0,0.04);
}

.project-hero__form-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.35;
}

.project-hero__info-bar {
  background: linear-gradient(135deg, #d6b884 0%, #c4a670 100%);
  padding: 24px 0;
  position: relative;
  z-index: 3;
}

.project-hero__info-content {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.project-hero__logo {
  width: 98px;
  height: 98px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.project-hero__logo img,
.project-hero__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.project-hero__text {
  flex: 1;
}

.project-hero__title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
}

.project-hero__meta {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  opacity: 1;
}

/* Hero Form Styles */

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group .required {
  color: #d6b884;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 13px 14px;
  border: 1px solid #d4d8dc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(15, 40, 72, 0.08);
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: #999;
  font-size: 13px;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: #d6b884;
  box-shadow: 0 0 0 2px rgba(2, 167, 173, 0.15);
}

.hero-form textarea {
  resize: vertical;
  min-height: 74px;
}

.project-hero__form-card form {
  width: 100%;
}

.project-hero__form-card form > * {
  width: 100%;
}

.project-hero__form-card form:not(.hero-form) > * + * {
  margin-top: 18px;
}

.project-hero__form-card input,
.project-hero__form-card select,
.project-hero__form-card textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
}

.project-hero__form-card .wpcf7-form-control-wrap,
.project-hero__form-card .ginput_container,
.project-hero__form-card .gfield,
.project-hero__form-card .wpforms-field,
.project-hero__form-card .nf-field-element {
  width: 100%;
  display: block;
}

.agent-question {
  display: flex;
  flex-direction: column;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
}

.radio-label input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

.radio-label span {
  user-select: none;
}

.btn-submit {
  background: linear-gradient(135deg, #d6b884 0%, #c4a670 100%);
  color: white;
  padding: 15px 26px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  margin-top: 8px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #c4a670 0%, #b39660 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(214, 184, 132, 0.3);
}

.form-disclaimer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.form-disclaimer p {
  font-size: 11px;
  color: #5b5b5b;
  line-height: 1.55;
  margin: 0;
  text-align: left;
}

@media (max-width: 1200px) {
  .project-hero__container {
    min-height: 500px;
    padding: 50px clamp(24px, 5vw, 60px) 90px;
  }

  .project-hero__content-wrapper {
    gap: 40px;
    min-height: 500px;
  }

  .project-hero__info-section .project-hero__logo {
    width: 100px;
    height: 100px;
  }

  .project-hero__info-section .project-hero__title {
    font-size: 36px;
  }

  .project-hero__form-card {
    padding: 34px 36px;
  }

  .project-hero__info-content {
    padding: 0 clamp(24px, 5vw, 60px);
    gap: 26px;
  }

  .project-hero__logo {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 991px) {
  .project-hero__container {
    min-height: 460px;
    justify-content: center;
    padding: 48px clamp(24px, 6vw, 54px) 80px;
  }

  .project-hero__content-wrapper {
    flex-direction: column;
    gap: 30px;
    min-height: auto;
  }

  .project-hero__info-section {
    text-align: center;
    justify-content: center;
  }

  .project-hero__info-section .project-hero__title {
    font-size: 32px;
  }

  .project-hero__info-section .project-hero__meta {
    font-size: 16px;
  }

  .project-hero__form-wrap {
    max-width: min(420px, 100%);
  }

  .project-hero__info-content {
    padding: 0 clamp(20px, 6vw, 54px);
  }

  .project-hero__title {
    font-size: 28px;
  }

  .project-hero__meta {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .project-hero__container {
    min-height: auto;
    padding: 42px 24px 72px;
  }

  .project-hero__content-wrapper {
    padding: 0 24px;
  }

  .project-hero__info-section {
    flex-direction: column;
    gap: 18px;
  }

  .project-hero__info-section .project-hero__logo {
    width: 90px;
    height: 90px;
  }

  .project-hero__info-section .project-hero__title {
    font-size: 26px;
  }

  .project-hero__info-section .project-hero__meta {
    font-size: 14px;
  }

  .project-hero__form-wrap {
    justify-content: center;
    max-width: 420px;
  }

  .project-hero__form-card {
    padding: 28px 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-hero__info-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 20px 24px;
  }

  .project-hero__logo {
    width: 82px;
    height: 82px;
  }

  .project-hero__title {
    font-size: 24px;
  }

  .project-hero__meta {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .project-hero__container {
    padding: 36px 20px 60px;
  }

  .project-hero__content-wrapper {
    padding: 0 20px;
  }

  .project-hero__info-section .project-hero__logo {
    width: 72px;
    height: 72px;
  }

  .project-hero__info-section .project-hero__title {
    font-size: 22px;
  }

  .project-hero__info-section .project-hero__meta {
    font-size: 13px;
  }

  .project-hero__form-card {
    padding: 24px 22px;
  }

  .project-hero__form-title {
    font-size: 16px;
  }

  .project-hero__logo {
    width: 72px;
    height: 72px;
  }

  .btn-submit {
    padding: 13px 22px;
    font-size: 14px;
  }
}

/* Main Content Layout */
.main-content {
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px;
  background: var(--hrp-light);
  border-radius: 12px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--hrp-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--hrp-dark);
}

/* Content Grid */
.project-content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.content-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.content-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--hrp-dark);
  border-bottom: 2px solid var(--hrp-accent);
  padding-bottom: 10px;
}

/* Highlights List */
.highlights-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 12px;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.highlights-list .check {
  color: var(--hrp-success);
  font-weight: bold;
  font-size: 18px;
}

/* Project Description */
.project-description {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.project-description p {
  margin-bottom: 15px;
}

/* Gallery Grid */
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-thumb:hover {
  transform: scale(1.05);
}

.gallery-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.reason-card {
  padding: 20px;
  background: var(--hrp-light);
  border-radius: 8px;
  border-left: 4px solid var(--hrp-accent);
}

.reason-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--hrp-dark);
}

.reason-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Reasons Text Content */
.reasons-text p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
}

/* Project Map */
.project-map {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

/* Sidebar */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-widget {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--hrp-dark);
  border-bottom: 2px solid var(--hrp-accent);
  padding-bottom: 10px;
}

/* Quick Facts */
.facts-grid {
  display: grid;
  gap: 15px;
}

.fact {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--hrp-border);
  align-items: flex-start;
}

.fact-label {
  font-size: 14px;
  color: var(--hrp-muted);
  font-weight: 500;
  min-width: 120px;
  flex-shrink: 0;
}

.fact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--hrp-dark);
  text-align: right;
  flex: 1;
  margin-left: 15px;
  line-height: 1.4;
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: var(--hrp-primary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-download:hover {
  background: var(--hrp-dark);
  transform: translateY(-2px);
}

/* Deposit Structure */
.deposit-content {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.deposit-content p {
  margin-bottom: 10px;
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, var(--hrp-primary) 0%, var(--hrp-dark) 100%);
  color: white;
}

.cta-widget h3 {
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.cta-widget p {
  margin-bottom: 20px;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: var(--hrp-primary);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Similar Projects */
.similar-projects {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--hrp-border);
}

.similar-projects h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--hrp-dark);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Hero Banner */
.hrp-hero-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.hrp-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hrp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.hrp-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hrp-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.1;
  letter-spacing: 1px;
  color: white !important;
  text-shadow: 0 0 15px rgba(0,0,0,0.9),
               0 0 25px rgba(0,0,0,0.7),
               3px 3px 6px rgba(0,0,0,1),
               -1px -1px 0 rgba(0,0,0,0.9),
               1px -1px 0 rgba(0,0,0,0.9),
               -1px 1px 0 rgba(0,0,0,0.9),
               1px 1px 0 rgba(0,0,0,0.9);
}

.hrp-hero-subtitle {
  font-size: 18px;
  margin: 0;
  opacity: 0.95;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  font-weight: 400;
}

/* Projects Page Wrapper */
.hrp-projects-page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px 20px;
}

/* Status Tabs Section */
.hrp-status-tabs-container {
  margin-bottom: 20px;
}

.hrp-status-tabs {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hrp-status-tab {
  flex: 1;
  padding: 15px 20px;
  background: white;
  border: none;
  border-right: 1px solid #e5e7eb;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.hrp-status-tab:last-child {
  border-right: none;
}

.hrp-status-tab:hover {
  background: #f9fafb;
}

.hrp-status-tab.active {
  background: #2563eb;
  color: white;
}

.tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.hrp-status-tab.coming-soon .tab-dot { background: #3b82f6; }
.hrp-status-tab.assignments .tab-dot { background: #8b5cf6; }
.hrp-status-tab.vip-sale .tab-dot { background: #fbbf24; }
.hrp-status-tab.sold-out .tab-dot { background: #ef4444; }
.hrp-status-tab.all-projects .tab-dot { background: #10b981; }
.hrp-status-tab.active .tab-dot { background: white; }

/* Map Section */
.hrp-map-section {
  position: relative;
  height: 500px;
  background: #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hrp-map-controls {
  position: absolute;
  top: 15px;
  left: 15px;
  /* Keep map controls under sticky headers */
  z-index: 2;
}

.hrp-map-toggle {
  display: flex;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  overflow: hidden;
}

.map-view-btn {
  padding: 8px 15px;
  background: white;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}

.map-view-btn:first-child {
  border-right: 1px solid #e5e7eb;
}

.map-view-btn.active,
.map-view-btn:hover {
  background: #f3f4f6;
  color: #111827;
}

.hrp-projects-map {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

/* Clean Filters Section */
.hrp-filters-section {
  margin: 30px 0;
  padding: 0;
  background: transparent;
}

.hrp-filters-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 40px;
  background: white;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.hrp-filters-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 0;
}

.hrp-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.hrp-filter-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b7280;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.hrp-filter-input,
.hrp-filter-select {
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  transition: all 0.2s ease;
  width: 100%;
  height: 44px;
  box-shadow: none;
  font-weight: 400;
  color: #374151;
}

.hrp-filter-select {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22%236b7280%22%20d%3D%22M10.293%203.293L6%207.586%201.707%203.293A1%201%200%2000.293%204.707l5%205a1%201%200%20001.414%200l5-5a1%201%200%2010-1.414-1.414z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
  cursor: pointer;
}

.hrp-filter-input:hover,
.hrp-filter-select:hover {
  border-color: #d1d5db;
  box-shadow: none;
  transform: none;
}

.hrp-filter-input:focus,
.hrp-filter-select:focus {
  outline: none;
  border-color: #d6b884;
  box-shadow: 0 0 0 3px rgba(214, 184, 132, 0.15);
  transform: none;
}

.hrp-search-input {
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%236b7280%22%20stroke-width%3D%222%22%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%228%22%2F%3E%3Cpath%20d%3D%22M21%2021l-4.35-4.35%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: 15px center;
  padding-left: 45px;
}

.hrp-price-filter-row {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 20px;
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}

.hrp-price-filter-row .hrp-filter-group {
  width: 200px;
}

.hrp-reset-btn {
  padding: 12px 24px;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  height: 44px;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hrp-reset-btn:hover {
  background: #dc2626;
  transform: none;
  box-shadow: none;
}

.hrp-reset-btn:active {
  transform: none;
}

/* Projects Grid Container */
.hrp-projects-grid-container {
  margin-top: 30px;
}

.hrp-projects-grid-container .hrp-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Enhanced Card Styles with Overlay */
.hrp-projects-grid-container .hrp-card--enhanced {
  position: relative;
  border-radius: 12px;
  overflow: visible; /* Changed to show ribbon outside bounds */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
  height: 420px;
}

.hrp-projects-grid-container .hrp-card--enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hrp-projects-grid-container .hrp-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
}

.hrp-projects-grid-container .hrp-card__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 12px; /* Match card border radius */
}

.hrp-projects-grid-container .hrp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.hrp-projects-grid-container .hrp-card--enhanced:hover .hrp-card__image img {
  transform: scale(1.08);
}

/* VIP Sale Ribbon */
.hrp-projects-grid-container .hrp-card__status--vip {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: white;
  padding: 10px 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 2px 10px rgba(214, 184, 132, 0.4);
  z-index: 20;
  min-width: 150px;
  text-align: center;
}

.hrp-projects-grid-container .hrp-card__status {
  display: none;
}

.hrp-projects-grid-container .hrp-card__ribbon {
  display: none;
}

/* Overlay Content */
.hrp-projects-grid-container .hrp-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
  color: white;
  z-index: 10;
}

.hrp-projects-grid-container .hrp-card__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  color: white !important;
  text-shadow: 0 0 10px rgba(0,0,0,0.9),
               0 0 20px rgba(0,0,0,0.7),
               2px 2px 4px rgba(0,0,0,1),
               -1px -1px 0 rgba(0,0,0,0.8),
               1px -1px 0 rgba(0,0,0,0.8),
               -1px 1px 0 rgba(0,0,0,0.8),
               1px 1px 0 rgba(0,0,0,0.8);
}

.hrp-projects-grid-container .hrp-card__developer {
  display: none;
}

.hrp-projects-grid-container .hrp-card__address {
  display: none;
}

.hrp-projects-grid-container .hrp-card__city {
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.95;
}

.hrp-projects-grid-container .hrp-card__details {
  display: block;
  border: none;
  padding: 0;
  margin: 15px 0 0 0;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.9;
}

.hrp-projects-grid-container .hrp-card__detail {
  display: inline;
  color: white;
}

.hrp-projects-grid-container .hrp-card__detail strong {
  color: white;
  font-weight: 500;
}

.hrp-projects-grid-container .hrp-card__price {
  display: inline;
  font-size: 15px;
  font-weight: 500;
  color: white;
  margin: 0;
}

/* Diagonal Corner Ribbon */
.hrp-vip-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 120px 120px 0;
  border-color: transparent;
  z-index: 20;
  border-top-right-radius: 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.hrp-vip-ribbon::before {
  content: attr(data-status);
  position: absolute;
  top: 28px;
  right: -85px;
  width: 120px;
  color: white;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transform: rotate(45deg);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  line-height: 1;
  white-space: nowrap;
}

/* VIP Sale Ribbon - Teal */
.hrp-ribbon-vip-sale {
  border-right-color: #5EEAD4;
}

/* Coming Soon Ribbon - Blue */
.hrp-ribbon-coming-soon {
  border-right-color: #60A5FA;
}

.hrp-ribbon-coming-soon::before {
  font-size: 9px;
  width: 120px;
  right: -85px;
  top: 32px;
}

/* Assignment Ribbon - Purple */
.hrp-ribbon-assignment {
  border-right-color: #A78BFA;
}

.hrp-ribbon-assignment::before {
  font-size: 9px;
  width: 120px;
  right: -85px;
  top: 32px;
}

/* Sold Out Ribbon - Red/Gray */
.hrp-ribbon-sold-out {
  border-right-color: #94A3B8;
}

.hrp-ribbon-sold-out::before {
  font-size: 10px;
}

/* Load More */
.hrp-load-more-container {
  text-align: center;
  margin: 40px 0;
}

.hrp-load-more-btn {
  padding: 12px 30px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hrp-load-more-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(214, 184, 132, 0.3);
}

.hrp-load-more-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.hrp-archive {
  padding: 20px 0;
}

/* Status Chips */
.hrp-status-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  justify-content: center;
}

.hrp-chip {
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid var(--hrp-border);
  background: white;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.hrp-chip:hover {
  border-color: var(--hrp-accent);
  color: var(--hrp-accent);
}

.hrp-chip.active {
  background: var(--hrp-accent);
  color: white;
  border-color: var(--hrp-accent);
}

/* Filters Bar */
.hrp-filters {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hrp-filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
}

.hrp-filters label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--hrp-muted);
  font-weight: 500;
}

.hrp-filters select,
.hrp-filters input {
  min-width: 150px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  transition: border-color 0.3s;
}

.hrp-filters select:focus,
.hrp-filters input:focus {
  outline: none;
  border-color: var(--hrp-accent);
}

.hrp-filters__search input {
  min-width: 250px;
}

.hrp-reset {
  padding: 12px 24px;
  border: 2px solid var(--hrp-accent);
  background: white;
  color: var(--hrp-accent);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  margin-left: 10px;
}

.hrp-reset:hover {
  background: var(--hrp-accent);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Map Container */
.hrp-map {
  height: 450px;
  border: 2px solid var(--hrp-border);
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
}

/* Ensure plugin sections never overlay sticky headers */
.hrp-hero-banner,
.hrp-map-section,
.hrp-filters-section,
.hrp-results {
  position: relative;
  z-index: 0;
}

/* Common Elementor sticky header class override so it stays above the map */
body .elementor-sticky--active,
body .elementor-sticky--effects { z-index: 9999 !important; }

/* Project Cards Grid */
.hrp-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

/* Project Card */
.hrp-card {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.hrp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hrp-card__thumb {
  display: block;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.hrp-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.hrp-card:hover .hrp-card__thumb img {
  transform: scale(1.1);
}

/* Card Overlay */
.hrp-card--overlay .hrp-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hrp-o-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.hrp-o-sub {
  font-size: 14px;
  opacity: 0.95;
}

.hrp-o-meta {
  font-size: 13px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Card Layout */
.hrp-card--enhanced {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hrp-card--enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: #e0e0e0;
}

.hrp-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.hrp-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hrp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hrp-card--enhanced:hover .hrp-card__image img {
  transform: scale(1.08);
}

.hrp-card__placeholder {
  font-size: 48px;
  opacity: 0.3;
}

.hrp-card__status {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #3498db;
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.hrp-card__status--assignment {
  background: #e74c3c;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.hrp-card__status--vip {
  background: #27ae60;
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.hrp-card__status--sold {
  background: #95a5a6;
  box-shadow: 0 2px 8px rgba(149, 165, 166, 0.3);
}

.hrp-card__ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #27ae60;
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.hrp-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.hrp-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px 0;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.hrp-card__developer {
  font-size: 15px;
  color: #e74c3c;
  font-weight: 500;
  margin: 0 0 12px 0;
}

.hrp-card__address {
  font-size: 15px;
  color: #666;
  margin: 0 0 4px 0;
  line-height: 1.5;
}

.hrp-card__city {
  font-size: 15px;
  color: #999;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.hrp-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.hrp-card__detail {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hrp-card__detail strong {
  color: #333;
  font-weight: 600;
}

.hrp-card__price {
  font-size: 28px;
  font-weight: 700;
  color: #27ae60;
  margin-top: 12px;
  letter-spacing: -0.5px;
}

.hrp-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--hrp-accent);
  color: white;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Load More */
.hrp-pagination {
  text-align: center;
  margin-top: 40px;
}

/* ===================================
   SINGLE PROJECT PAGE STYLES
   =================================== */

/* Hero Section */
.project-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: auto;
  background: #f1f5f6;
  background-size: initial;
  background-position: initial;
  align-items: stretch;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 80vh;
}

.hero-center {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.hero-project-info {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 40px;
  border-radius: 12px;
  width: fit-content;
  max-width: 600px;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: 2px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-details {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Project Details Section */
.project-details-section {
  padding: 70px 0;
}

.section-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  padding: 40px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 28px 0;
}

.section-title::before {
  content: '»';
  color: #d6b884;
  font-size: 30px;
  line-height: 1;
  margin-right: 0;
}

.project-details-card .details-content {
  margin-top: 20px;
}

.details-content {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.details-content-full {
  margin-top: 20px;
  width: 100%;
}

.details-gallery-full {
  margin: 40px 0;
  width: 100%;
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.gallery-grid-full .gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid-full .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-grid-full .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-tagline {
  font-size: 18px;
  font-weight: 800;
  background: #d6b884;
  color: white;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255, 0, 85, 0.3);
}

.project-headline {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 26px 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #e5e7eb;
  padding: 16px 20px;
  background: #f9fafb;
  border-radius: 8px;
}

.project-headline .price-highlight {
  color: #d6b884;
  font-weight: 900;
}

.project-headline .separator {
  display: inline-block;
  margin: 0 8px;
  color: #6b7280;
  font-weight: 600;
  font-size: 0.9em;
  vertical-align: middle;
}

.project-headline .home-type {
  font-weight: 700;
  color: #374151;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  gap: 12px;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
}

.highlights-list .check {
  color: #111827;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 1px;
}

.project-description {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 32px;
}

.project-description strong {
  color: #111827;
  font-weight: 700;
}

.cta-button-section {
  margin-top: 30px;
}

.register-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d6b884 0%, #c4a670 100%);
  color: #ffffff;
  padding: 18px 36px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.register-btn:hover {
  background: linear-gradient(135deg, #c4a670 0%, #b39660 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(214, 184, 132, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Reasons to Buy and Quick Facts - OLD STYLES KEPT FOR COMPATIBILITY */
.reasons-facts-section {
  padding: 70px 0;
  background: #ffffff;
}

.reasons-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

/* NEW SECTIONS: Reasons to Invest */
.reasons-invest-section {
  padding: 70px 0;
  background: transparent;
}

.reasons-card {
  position: relative;
  overflow: hidden;
  padding: 40px 32px 48px;
}

.reasons-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(2, 167, 173, 0.12), transparent 55%);
  pointer-events: none;
}

.section-card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.section-card-header .section-title {
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #4b5563;
  max-width: 640px;
}

.section-title-center {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 50px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.section-title-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #d6b884 0%, #c4a670 100%);
}

.reasons-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.reasons-carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 40px;
  will-change: transform;
  padding: 0 20px;
}

.reason-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: #d6b884;
}

.reason-card-inner {
  padding: 30px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reason-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d6b884 0%, #c4a670 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.reason-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reason-card-content {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  flex: 1 1 auto;
}

.reason-card-content p {
  margin: 0 0 12px 0;
}

.reason-card-content p:last-child {
  margin-bottom: 0;
}


.carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.carousel-dots {
  display: inline-flex;
  gap: 10px;
}

.carousel-dots[hidden] {
  display: none;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
  border: none;
}

.carousel-dot.active {
  background: linear-gradient(135deg, #d6b884 0%, #c4a670 100%);
  width: 36px;
}

/* NEW SECTIONS: Quick Facts */
.quick-facts-section {
  padding: 70px 0;
  background: transparent;
  position: relative;
}

.quick-facts-card {
  padding: 48px;
}

.quick-facts-card .section-card-header {
  margin-bottom: 36px;
}

.quick-facts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.quick-fact-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  flex: 1 1 auto;
  min-width: 300px;
  max-width: calc(33.333% - 17px);
  position: relative;
  overflow: hidden;
}

.quick-fact-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
  border-color: #d6b884;
}

.fact-icon {
  width: 50px;
  height: 50px;
  background: #fafafa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d6b884;
  border: 1px solid #d6b88430;
}

.fact-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-fact-item .fact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin-bottom: 6px;
  display: block;
}

.quick-fact-item .fact-value {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  word-break: break-word;
  text-align: left;
  margin-left: 0;
}

.quick-fact-item .fact-value p {
  margin: 0;
  line-height: 1.6;
}

.quick-fact-item .fact-value p + p {
  margin-top: 10px;
}

/* Wide fact items for longer content */
.fact-item-wide {
  max-width: calc(50% - 12.5px) !important;
  flex: 1 1 calc(50% - 12.5px);
}

/* Full width fact items for Incentives and Deposit Structure */
.fact-item-full-width {
  max-width: 100% !important;
  flex: 1 1 100%;
  width: 100%;
}

/* Extra wide items that need full width */
.fact-item-wide:has(.fact-value:nth-child(n+100)) {
  max-width: 100% !important;
  flex: 1 1 100%;
}

@media (max-width: 1200px) {
  .fact-item-wide {
    max-width: 100% !important;
    flex: 1 1 100%;
  }
}

.reasons-facts-grid .section-card {
  height: 100%;
}

.reasons-card .reason-item + .reason-item {
  margin-top: 28px;
}

.reason-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reason-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.facts-card .fact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid #e5e7eb;
  align-items: flex-start;
}

.facts-card .fact-item:first-of-type {
  padding-top: 4px;
}

.facts-card .fact-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.facts-card .fact-label {
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.facts-card .fact-value {
  color: #4b5563;
  font-weight: 500;
  text-align: left;
}

/* MIB Incentives and Map */
.incentives-map-section {
  padding: 70px 0;
}

.incentives-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.incentives-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.incentive-item {
  font-size: 16px;
  color: #1f2937;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.incentive-item::before {
  content: '•';
  color: #d6b884;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -2px;
}

.incentives-list .incentive-item:first-child {
  font-weight: 700;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.project-location-map,
.default-map {
  height: 100%;
  min-height: 360px;
}

.project-location-map,
.default-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Trending Projects */
.trending-projects-section {
  padding: 80px 0;
  background: white;
}

.trending-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 60px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.trending-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trending-project-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s;
}

.trending-project-card:hover {
  transform: translateY(-5px);
}

.trending-project-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.trending-project-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  color: white;
  padding: 30px 25px;
}

.trending-project-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color:#fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.trending-project-location {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* New Ribbon Style */
.ribbon-wrapper-2 {
  width: 108px;
  height: 108px;
  overflow: hidden;
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 10;
}

.ribbon-2 {
  font: bold 11.5px Sans-Serif;
  line-height: 18px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  padding: 7px 0;
  left: -4px;
  top: 26px;
  width: 150px;
  background-color: #6daaab;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  letter-spacing: .5px;
  box-shadow: -3px 5px 6px -5px rgba(0,0,0,.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .hero-center {
    order: 1;
  }

  .hero-form-card {
    order: 2;
    width: 90%;
    max-width: 400px;
  }

  .hero-project-info {
    width: 90%;
    max-width: 400px;
  }

  .section-card {
    padding: 28px;
    border-radius: 12px;
  }

  .section-title {
    font-size: 22px;
  }

  .project-headline {
    font-size: 24px;
  }

  .project-tagline {
    font-size: 14px;
    padding: 8px 12px;
    letter-spacing: 0.5px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .details-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .facts-card .fact-item {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .facts-card .fact-label {
    flex: none;
  }

  .reasons-facts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .incentives-map-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trending-projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .reasons-carousel {
    gap: 25px;
  }

  .reason-card {
    flex: 0 0 100%;
  }

  .quick-fact-item {
    max-width: calc(50% - 12.5px);
  }

  .quick-fact-item:has(.fact-label:contains("INCENTIVES")),
  .quick-fact-item:has(.fact-label:contains("FEATURES")) {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .gallery-grid-full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .reasons-carousel-wrapper {
    padding: 0 16px;
  }

  .reasons-carousel {
    gap: 16px;
  }

  .reason-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .reason-card-inner {
    padding: 28px 25px;
  }

  .section-title-center {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .quick-fact-item {
    max-width: 100%;
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .gallery-grid-full {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reasons-invest-section,
  .quick-facts-section {
    padding: 60px 0;
  }

  .section-title-center {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .carousel-navigation {
    margin-top: 30px;
  }

  .quick-fact-item {
    padding: 20px;
    gap: 15px;
  }

  .fact-icon {
    width: 48px;
    height: 48px;
  }

  .quick-fact-item .fact-value {
    font-size: 16px;
  }

  .reason-card-inner {
    padding: 26px 24px;
  }

  .reason-number {
    width: 44px;
    height: 44px;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .reason-card-title {
    font-size: 18px;
  }
}

.hrp-load-more {
  padding: 14px 35px;
  border: 2px solid var(--hrp-accent);
  background: white;
  color: var(--hrp-accent);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.hrp-load-more:hover {
  background: var(--hrp-accent);
  color: white;
}

/* Lightbox */
.hrp-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}

.hrp-lightbox.active {
  display: block;
}

.hrp-lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  cursor: pointer;
}

.hrp-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}

.hrp-lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
}

.hrp-lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.hrp-lightbox-prev,
.hrp-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 20px;
}

.hrp-lightbox-prev {
  left: 20px;
}

.hrp-lightbox-next {
  right: 20px;
}

.hrp-lightbox-close:hover,
.hrp-lightbox-prev:hover,
.hrp-lightbox-next:hover {
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-meta {
    justify-content: center;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .project-content-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid,
  .hrp-results {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hrp-filters-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hrp-search-group {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .hrp-status-tabs {
    flex-wrap: wrap;
  }

  .hrp-status-tab {
    flex: 1 1 50%;
    font-size: 11px;
    padding: 12px 10px;
  }

  .hrp-map-section {
    height: 350px;
  }

  .hrp-filters-grid {
    grid-template-columns: 1fr;
  }

  .hrp-search-group {
    grid-column: span 1;
  }

  .hrp-price-filter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hrp-price-filter-row .hrp-filter-group {
    width: 100%;
  }

  .hrp-projects-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-meta {
    flex-direction: column;
    gap: 20px;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .projects-grid,
  .hrp-results {
    grid-template-columns: 1fr;
  }
  
  .hrp-filters__row {
    flex-direction: column;
  }
  
  .hrp-filters select,
  .hrp-filters input {
    width: 100%;
  }
  
  .projects-results-section {
    padding: 20px;
  }
}

/* ========================================
   Shortcode Specific Styles
   ======================================== */

/* VIP Sale & Coming Soon Projects Grid */
.hrp-projects-grid-container {
  margin: 40px 0;
}

.hrp-projects-grid-container .hrp-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

/* 3-column grid for shortcode projects */
.hrp-results--three-columns {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px;
  margin-bottom: 40px;
}

/* Responsive breakpoints for 3-column grid */
@media (max-width: 768px) {
  .hrp-results--three-columns {
    grid-template-columns: 1fr !important;
  }
}

/* No results message */
.hrp-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  font-size: 18px;
  color: #666;
}

/* Map Search Container */
.hrp-map-search-container {
  margin: 40px 0;
}

.hrp-map-search-container .hrp-status-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  justify-content: center;
}

.hrp-map-search-container .hrp-chip {
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  color: #2c3e50;
}

.hrp-map-search-container .hrp-chip:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}

.hrp-map-search-container .hrp-chip.active {
  background: #e74c3c;
  color: white;
  border-color: #e74c3c;
}

.hrp-map-search-container .hrp-map {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
