/* ═══════════════════════════════════════════
   BULK OFFER — Lekki Picasso City
   Page-specific styles
   ═══════════════════════════════════════════ */

/* ── Flash-Sale Hero ── */
.bo-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 55%, var(--green-mid) 100%);
  padding: 140px 0 80px;
}
.bo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(201, 164, 82, 0.18) 0%, transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(201, 164, 82, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.bo-hero .container {
  position: relative;
  z-index: 2;
}
.bo-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.bo-delay { animation-delay: 0.2s; }

/* Flash Sales badge — echoes the flyer */
.bo-flash {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  transform: rotate(-3deg);
}
.bo-flash span {
  display: inline-block;
  padding: 8px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  font-size: 0.85rem;
}
.bo-flash .flash-a {
  background: #0FA3A3;
  border-radius: 6px 6px 0 0;
}
.bo-flash .flash-b {
  background: var(--red-badge);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 28px rgba(214, 72, 72, 0.35);
}

.bo-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  color: var(--white);
  line-height: 1.06;
  margin: 0 0 20px;
}
.bo-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.bo-hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Offer stat chips */
.bo-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.bo-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 164, 82, 0.35);
  border-radius: 12px;
  padding: 12px 18px;
  min-width: 120px;
}
.bo-stat .bo-stat-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}
.bo-stat .bo-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.bo-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.bo-hero-actions .btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}
.bo-hero-actions .btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Countdown */
.bo-countdown-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.bo-countdown-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.offer-countdown {
  display: flex;
  gap: 8px;
}
.offer-countdown .cd-cell {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(201, 164, 82, 0.4);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 56px;
  text-align: center;
}
.offer-countdown .cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}
.offer-countdown .cd-cap {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ── Lead Form Card ── */
.bo-lead {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.bo-lead h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  margin: 0 0 6px;
}
.bo-lead .bo-lead-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 24px;
}
.bo-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
}
.bo-input::placeholder { color: rgba(255, 255, 255, 0.42); }
.bo-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.13);
}
.bo-input option { color: var(--charcoal); background: #fff; }
.bo-submit {
  width: 100%;
  background: var(--gold);
  color: var(--green-dark);
  padding: 16px;
  border: none;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.bo-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 164, 82, 0.4);
}
.bo-lead .fine-print {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
  margin: 14px 0 0;
}

/* ── Offer Price Band ── */
.bo-price-band {
  background: var(--green-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bo-price-band::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 2px solid rgba(201, 164, 82, 0.35);
  border-radius: 18px;
  pointer-events: none;
}
.bo-price-band .eyebrow { color: var(--gold-light); }
.bo-price-kicker {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 14px 0 4px;
}
.bo-price-acre {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, #A5813A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 8px 0;
}
.bo-price-plots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.bo-price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
}
.bo-price-amount .currency {
  color: var(--gold-light);
}
.bo-price-terms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 24px 0 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}
.bo-price-terms span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bo-price-terms svg { color: var(--gold); flex-shrink: 0; }
.bo-price-deposit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  padding: 14px 32px;
  color: var(--white);
  font-size: 1.05rem;
}
.bo-price-deposit strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

/* ── Feature / Included Grid ── */
.bo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bo-feature {
  background: var(--white);
  border: 1px solid var(--bone-mid);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.bo-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 164, 82, 0.45);
}
.bo-feature .bo-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 164, 82, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 18px;
}
.bo-feature h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-dark);
  margin: 0 0 10px;
}
.bo-feature p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* ── Payment Plan ── */
.bo-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.bo-plan-step {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.bo-plan-step .bo-plan-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: rgba(201, 164, 82, 0.35);
  line-height: 1;
  margin-bottom: 12px;
}
.bo-plan-step h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 10px;
  color: var(--gold-light);
}
.bo-plan-step p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}
.bo-plan-step .bo-plan-tag {
  display: inline-block;
  margin-top: 18px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 40px;
}

/* ── Flyer Showcase ── */
.bo-flyer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.bo-flyer-frame {
  background: var(--green-dark);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}
.bo-flyer-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.bo-checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
}
.bo-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bone-mid);
  font-size: 0.98rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.bo-checklist li:last-child { border-bottom: none; }
.bo-checklist svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-light);
}

/* ── Final CTA extra ── */
.bo-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 164, 82, 0.16);
  border: 1px solid rgba(201, 164, 82, 0.4);
  border-radius: 40px;
  padding: 10px 22px;
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .bo-hero { padding: 120px 0 64px; }
  .bo-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .bo-feature-grid { grid-template-columns: 1fr 1fr; }
  .bo-plan-grid { grid-template-columns: 1fr; }
  .bo-flyer-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .bo-feature-grid { grid-template-columns: 1fr; }
  .bo-stat { min-width: 0; flex: 1 1 45%; }
  .bo-price-band::before { inset: 12px; }
  .offer-countdown .cd-cell { min-width: 48px; padding: 7px 9px; }
  .offer-countdown .cd-num { font-size: 1.25rem; }
  .bo-lead { padding: 26px 20px; }
}
