/* =============================================
   PROJECT PAGE — RESPONSIVE STYLES
   ============================================= */

.proj-page-hero {
  min-height: 340px;
  display: flex; align-items: flex-end;
  padding-bottom: 40px;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .proj-page-hero { min-height: 440px; padding-bottom: 56px; } }
@media (min-width: 1024px) { .proj-page-hero { min-height: 500px; } }

.proj-page-hero .hero-pattern {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    transparent, transparent 30px,
    rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 31px);
}
.proj-page-hero .hero-content { position: relative; z-index: 1; }

.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a   { font-size: 12px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { font-size: 12px; color: rgba(255,255,255,0.35); }
.breadcrumb .current { color: var(--yellow); }

.proj-page-title { font-family: var(--font-display); font-size: 32px; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
@media (min-width: 640px)  { .proj-page-title { font-size: 40px; } }
@media (min-width: 1024px) { .proj-page-title { font-size: 48px; } }

.proj-page-meta { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; }
.proj-page-meta .meta-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.7); font-family: var(--font-bn); font-size: 13px;
}
.proj-page-meta .meta-item svg { color: var(--yellow); flex-shrink: 0; }
.proj-page-meta .meta-item strong { color: var(--yellow); }
.status-badge {
  background: var(--yellow); color: var(--black);
  font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
}

/* PROJECT BODY LAYOUT */
.proj-body-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 0 60px;
}
@media (min-width: 1024px) {
  .proj-body-layout {
    grid-template-columns: 1fr 360px;
    gap: 48px;
    padding: 56px 0 80px;
    align-items: start;
  }
}

.proj-content h2 {
  font-family: var(--font-display);
  font-size: 24px; margin-bottom: 14px;
}
@media (min-width: 640px) { .proj-content h2 { font-size: 28px; } }
.proj-content p { font-family: var(--font-bn); color: var(--gray); font-size: 14px; line-height: 1.9; margin-bottom: 20px; }

/* Amenities grid */
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}
@media (min-width: 640px) { .amenity-grid { grid-template-columns: repeat(3, 1fr); } }
.amenity-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  background: var(--gray-light); border-radius: var(--radius-sm);
}
.amenity-icon {
  width: 30px; height: 30px;
  background: var(--yellow); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.amenity-icon svg { width: 15px; height: 15px; }
.amenity-text { font-family: var(--font-bn); font-size: 12px; font-weight: 500; }

/* Plot price table */
.plot-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius-md); border: 1px solid var(--border); }
.plot-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.plot-table th { background: var(--dark); color: var(--yellow); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 12px 16px; text-align: left; white-space: nowrap; }
.plot-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); font-family: var(--font-bn); font-size: 13px; }
.plot-table tr:last-child td { border-bottom: none; }
.plot-table tr:hover td { background: var(--yellow-light); }
.price-val { font-weight: 600; color: var(--black); }
.avail-yes { color: #16a34a; font-weight: 500; font-size: 11px; }
.avail-ltd { color: #d97706; font-weight: 500; font-size: 11px; }

/* Map placeholder */
.map-placeholder {
  background: var(--gray-light); border-radius: var(--radius-md);
  height: 220px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  border: 1px dashed #ccc; margin: 24px 0;
}
.map-placeholder p { font-family: var(--font-bn); font-size: 13px; color: var(--gray); }
.map-placeholder small { font-size: 11px; color: #aaa; }

/* Virtual tour */
.vt-section { background: var(--dark); border-radius: var(--radius-lg); padding: 24px; margin: 24px 0; }
@media (min-width: 640px) { .vt-section { padding: 28px 32px; } }
.vt-inner { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .vt-inner { grid-template-columns: auto 1fr; align-items: center; gap: 28px; } }

.vt-preview {
  width: 100%; max-width: 320px;
  height: 180px;
  background: linear-gradient(135deg, #1a6b3a, #0a3d1f);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; cursor: pointer;
  border: 2px solid rgba(245,200,0,0.3);
  flex-shrink: 0;
}
.vt-play {
  width: 56px; height: 56px;
  background: rgba(245,200,0,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.vt-play:hover { transform: scale(1.1); background: var(--yellow); }
.vt-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.6); color: var(--white);
  font-size: 10px; padding: 3px 8px; border-radius: 3px;
}
.vt-content h3 { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 8px; }
.vt-content p { font-family: var(--font-bn); color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.75; margin-bottom: 14px; }
.vt-feats { display: flex; flex-direction: column; gap: 8px; }
.vt-feat { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-family: var(--font-bn); font-size: 12px; }
.vt-feat .dot { width: 5px; height: 5px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }

/* Sticky sidebar */
.enquiry-sidebar { position: relative; }
@media (min-width: 1024px) { .enquiry-sidebar { position: sticky; top: 122px; } }

.enquiry-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
}
@media (min-width: 480px) { .enquiry-box { padding: 26px 28px; } }
.enquiry-box h3 { font-family: var(--font-bn); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.price-tag { font-family: var(--font-display); font-size: 22px; color: var(--black); margin-bottom: 3px; }
.price-tag span { font-size: 13px; color: var(--gray); font-family: var(--font-en); }
.price-sub { font-family: var(--font-bn); font-size: 11px; color: var(--gray); margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.sidebar-highlights { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.shl-item { display: flex; align-items: center; gap: 9px; }
.shl-item span { font-family: var(--font-bn); font-size: 12px; color: var(--gray); }
.btn-wa-inline {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #25D366; color: var(--white);
  font-family: var(--font-bn); font-size: 13px; font-weight: 500;
  padding: 11px; border-radius: var(--radius-sm);
  margin-top: 10px; width: 100%;
  transition: opacity var(--transition);
}
.btn-wa-inline:hover { opacity: 0.9; }

/* =============================================
   NRB LANDING PAGE STYLES
   ============================================= */

.nrb-page { background: var(--dark); min-height: 100vh; }

.nrb-header {
  background: var(--black);
  border-bottom: 1px solid rgba(245,200,0,0.2);
  padding: 14px 0;
}
.nrb-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nrb-flag { display: flex; align-items: center; gap: 8px; }
.nrb-flag-icon {
  width: 26px; height: 18px;
  background: linear-gradient(to right, #006A4E 35%, #F42A41 35%);
  border-radius: 2px;
}
.nrb-flag span { font-family: var(--font-bn); font-size: 12px; color: rgba(255,255,255,0.55); }

.nrb-urgency {
  background: rgba(127,29,29,0.7);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 20px;
}
.nrb-urgency p { font-family: var(--font-bn); color: #FCA5A5; font-size: 13px; line-height: 1.6; }
.nrb-urgency strong { color: #FECACA; }

.nrb-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 40px 0 48px;
}
@media (min-width: 1024px) {
  .nrb-hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding: 60px 0 72px;
  }
}

.nrb-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,0,0.08);
  border: 1px solid rgba(245,200,0,0.22);
  color: var(--yellow);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 20px; font-family: var(--font-bn);
}
.nrb-title { font-family: var(--font-display); font-size: 34px; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.nrb-title span { color: var(--yellow); }
@media (min-width: 480px) { .nrb-title { font-size: 42px; } }
@media (min-width: 768px) { .nrb-title { font-size: 48px; } }

.nrb-sub { font-family: var(--font-bn); color: rgba(255,255,255,0.48); font-size: 15px; line-height: 1.85; margin-bottom: 28px; }

.nrb-trust { display: flex; flex-wrap: wrap; gap: 24px 36px; margin-bottom: 28px; }
.nrb-trust-item .num { font-family: var(--font-display); font-size: 28px; color: var(--yellow); }
.nrb-trust-item .lbl { font-family: var(--font-bn); font-size: 11px; color: rgba(255,255,255,0.38); }

.nrb-benefits { display: flex; flex-direction: column; gap: 11px; }
.nrb-benefit { display: flex; align-items: center; gap: 12px; }
.nrb-benefit .check {
  width: 22px; height: 22px;
  background: rgba(245,200,0,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nrb-benefit span { font-family: var(--font-bn); color: rgba(255,255,255,0.65); font-size: 13px; }

.nrb-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; }
@media (min-width: 480px) { .nrb-form-card { padding: 28px 32px; } }
.nrb-form-card h3 { font-family: var(--font-bn); font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.nrb-form-sub { font-family: var(--font-bn); color: var(--gray); font-size: 12px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nrb-form-sub .tag { background: #FEF3C7; color: #92400E; font-size: 11px; padding: 2px 8px; border-radius: 4px; font-weight: 500; }

.nrb-features-strip {
  background: rgba(245,200,0,0.05);
  border-top: 1px solid rgba(245,200,0,0.12);
  border-bottom: 1px solid rgba(245,200,0,0.12);
  padding: 28px 0;
}
.nrb-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 768px)  { .nrb-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nrb-features-grid { grid-template-columns: repeat(4, 1fr); } }
.nrb-feat-item { display: flex; align-items: center; gap: 12px; }
.nrb-feat-icon {
  width: 38px; height: 38px;
  background: rgba(245,200,0,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nrb-feat-item h4 { font-family: var(--font-bn); font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.nrb-feat-item p  { font-family: var(--font-bn); font-size: 11px; color: rgba(255,255,255,0.38); }

.nrb-social { padding: 56px 0; }
.nrb-social h2 { font-family: var(--font-display); font-size: 26px; color: var(--white); margin-bottom: 28px; text-align: center; }

/* =============================================
   PAYMENT GATEWAY STYLES
   ============================================= */

.payment-page { max-width: 680px; margin: 0 auto; padding: 40px 20px 80px; }
@media (min-width: 640px) { .payment-page { padding: 56px 32px 80px; } }

.payment-page h1 { font-family: var(--font-display); font-size: 26px; margin-bottom: 4px; }
@media (min-width: 640px) { .payment-page h1 { font-size: 30px; } }
.payment-sub { font-family: var(--font-bn); color: var(--gray); font-size: 13px; margin-bottom: 32px; }

/* Progress */
.pay-progress { display: flex; align-items: center; margin-bottom: 36px; }
.pp-step { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pp-circle {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; flex-shrink: 0;
}
.pp-step.done   .pp-circle { background: var(--yellow); color: var(--black); }
.pp-step.active .pp-circle { background: var(--dark); color: var(--yellow); border: 2px solid var(--yellow); }
.pp-step.next   .pp-circle { background: var(--gray-light); color: var(--gray); }
.pp-step .pp-label { font-family: var(--font-bn); font-size: 12px; display: none; }
@media (min-width: 480px) { .pp-step .pp-label { display: block; } }
.pp-step.done   .pp-label { color: var(--black); font-weight: 500; }
.pp-step.active .pp-label { color: var(--black); font-weight: 600; }
.pp-step.next   .pp-label { color: var(--gray); }
.pp-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; }
.pp-line.done { background: var(--yellow); }

/* Order summary */
.order-summary { background: var(--gray-light); border-radius: var(--radius-md); padding: 20px 22px; margin-bottom: 22px; }
.order-summary h3 { font-family: var(--font-bn); font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.order-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.order-row:last-child { border: none; padding-top: 12px; }
.order-row .ok { font-family: var(--font-bn); font-size: 13px; color: var(--gray); }
.order-row .ov { font-family: var(--font-en); font-size: 13px; font-weight: 500; }
.order-row.total .ok { font-weight: 600; font-size: 15px; color: var(--black); }
.order-row.total .ov { font-size: 18px; font-weight: 700; color: var(--black); }

/* Payment methods */
.payment-methods h3 { font-family: var(--font-bn); font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.method-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.method-tab {
  padding: 9px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: 12px; display: flex; align-items: center; gap: 7px;
  font-family: var(--font-bn);
  transition: all var(--transition);
}
.method-tab:hover { border-color: rgba(245,200,0,0.4); }
.method-tab.active { border-color: var(--yellow); background: var(--yellow-light); font-weight: 500; }
.method-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.card-form { background: var(--gray-light); border-radius: var(--radius-md); padding: 20px 22px; }
.card-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.security-badges {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.sec-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--gray); }

.pay-btn {
  width: 100%;
  background: var(--dark); color: var(--yellow);
  font-family: var(--font-bn);
  font-size: 15px; font-weight: 600;
  padding: 16px; border-radius: var(--radius-md);
  margin-top: 20px;
  transition: all var(--transition);
}
.pay-btn:hover { background: var(--black); transform: translateY(-1px); }
.pay-note { text-align: center; font-family: var(--font-bn); font-size: 12px; color: var(--gray); margin-top: 12px; }
