/* ═══════════════════════════════════════════════════════════════
   EXPLORE MORE SECTION — HVM Light Theme
   Navy #1B2D5B · Red #C22032 · White bg
   ═══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ────────────────────────────────────────── */
.explore-section {
  background: var(--clr-offwhite, #f6f7f9);
  padding-top: 5rem;
  padding-bottom: 5.5rem;
}

/* ── Section header ─────────────────────────────────────────── */
.explore-header {
  margin-bottom: 2.5rem;
}

.explore-heading {
  font-family: var(--ff-display, 'Cinzel', serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--clr-heading, #111111);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.explore-divider {
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--clr-red, #C22032);
  border-radius: 2px;
}

/* ── Grid ───────────────────────────────────────────────────── */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Card ───────────────────────────────────────────────────── */
.explore-card {
  display: block;
  position: relative;
  background: var(--clr-white, #ffffff);
  border: 1px solid rgba(27, 45, 91, 0.10);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.explore-card:hover {
  border-color: rgba(27, 45, 91, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(27, 45, 91, 0.08);
}

/* ── RERA badge ─────────────────────────────────────────────── */
.explore-rera {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 10;
  background: rgba(27, 45, 91, 0.85);
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: var(--ff-body, 'DM Sans', sans-serif);
  text-transform: uppercase;
}

/* ── Image ──────────────────────────────────────────────────── */
.explore-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.explore-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.explore-card:hover .explore-img {
  transform: scale(1.06);
}

.explore-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, 0.55) 100%);
  pointer-events: none;
}

/* ── Card body ──────────────────────────────────────────────── */
.explore-card-body {
  padding: 1.1rem 1.25rem 1.35rem;
}

/* ── Property name ──────────────────────────────────────────── */
.explore-name {
  font-family: var(--ff-display, 'Cinzel', serif);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--clr-heading, #111111);
  margin-bottom: 0.85rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.explore-card:hover .explore-name {
  color: var(--clr-navy, #1B2D5B);
}

/* ── Meta rows ──────────────────────────────────────────────── */
.explore-meta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.55rem;
  flex-wrap: wrap;
}

.explore-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-body, 'DM Sans', sans-serif);
  font-size: 0.78rem;
  color: var(--clr-muted, #5c6272);
  letter-spacing: 0.01em;
  line-height: 1;
}

/* ── SVG icons ──────────────────────────────────────────────── */
.explore-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke: var(--clr-navy, #1B2D5B);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Price row ──────────────────────────────────────────────── */
.explore-price-row {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(27, 45, 91, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.explore-price-label {
  font-family: var(--ff-body, 'DM Sans', sans-serif);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-muted, #5c6272);
}

.explore-price-value {
  font-family: var(--ff-display, 'Cinzel', serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-navy, #1B2D5B);
  letter-spacing: 0.04em;
}

/* ── Stagger children ───────────────────────────────────────── */
.explore-grid.stagger-children .explore-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease,
              border-color 0.35s ease, box-shadow 0.35s ease;
}

.explore-grid.stagger-children .explore-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.explore-grid.stagger-children .explore-card:nth-child(2) { transition-delay: 0.12s; }
.explore-grid.stagger-children .explore-card:nth-child(3) { transition-delay: 0.24s; }
