/* =========================================================
   FLOOR PLAN PAGE — PREMIUM DESIGN
   ========================================================= */

/* --- HERO SECTION --- */
.fp-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.fp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.45) 50%, rgba(13,27,42,0.75) 100%);
}

/* Floating decorative elements */
.fp-hero__deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(215,181,109,0.06);
  pointer-events: none;
}

.fp-hero__deco--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
  animation: floatDeco 8s ease-in-out infinite;
}

.fp-hero__deco--2 {
  width: 250px;
  height: 250px;
  bottom: -60px;
  left: -40px;
  animation: floatDeco 10s ease-in-out infinite reverse;
}

@keyframes floatDeco {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -20px) scale(1.05); }
}

.fp-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 80px 5% 0;
}

.fp-hero__eyebrow {
  animation: fadeSlideDown 0.8s 0.2s both;
}

.fp-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-family: 'Georgia', serif;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  color: #fff;
  animation: fadeSlideDown 0.8s 0.4s both;
}

.fp-hero__subtitle {
  font-size: 16px;
  font-family: sans-serif;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
  animation: fadeSlideDown 0.8s 0.6s both;
}

@keyframes fadeSlideDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Animated scroll line */
.fp-hero__scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  z-index: 2;
  overflow: hidden;
}

.fp-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 50%;
  background: var(--mnc-gold);
  animation: scrollDrop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDrop {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(100%); }
  100% { transform: translateY(200%); }
}

/* Breadcrumb */
.fp-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: sans-serif;
  font-size: 13px;
  animation: fadeSlideDown 0.8s 0.1s both;
}

.fp-breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.fp-breadcrumb a:hover {
  color: var(--mnc-gold);
}

.fp-breadcrumb__sep {
  color: rgba(255,255,255,0.3);
  font-size: 10px;
}

.fp-breadcrumb__current {
  color: var(--mnc-gold);
  font-weight: 600;
}


/* --- FLOOR PLANS GRID --- */
.fp-plans {
  padding: 12vh 5%;
  background: var(--mnc-grey, #f5f5f7);
}

.fp-plans__header {
  text-align: center;
  margin-bottom: 60px;
}

.fp-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* --- FLOOR PLAN CARD --- */
.fp-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0,0,0,0.04);
}

.fp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
}

.fp-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--mnc-navy, #0d1b2a);
  color: var(--mnc-gold, #d7b56d);
  font-size: 11px;
  font-family: sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.3s, transform 0.3s;
}

.fp-card:hover .fp-card__badge {
  background: var(--mnc-gold, #d7b56d);
  color: var(--mnc-navy, #0d1b2a);
  transform: scale(1.05);
}

.fp-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fdfdfd;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
}

.fp-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fp-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fp-card__overlay span {
  color: #fff;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.fp-card__overlay span i {
  color: var(--mnc-gold);
  margin-right: 8px;
}

.fp-card:hover .fp-card__overlay {
  opacity: 1;
}

.fp-card:hover .fp-card__overlay span {
  transform: translateY(0);
}

.fp-card__info {
  padding: 24px;
  text-align: center;
}

.fp-card__info h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--mnc-navy, #0d1b2a);
  font-family: 'Georgia', serif;
}

.fp-card__tag {
  display: block;
  font-size: 11px;
  color: var(--mnc-gold, #d7b56d);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.fp-card__meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.fp-card__meta span {
  font-family: sans-serif;
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fp-card__meta i {
  color: var(--mnc-gold, #d7b56d);
  font-size: 13px;
}


/* --- KEY HIGHLIGHTS (Dark Panel with Counters) --- */
.fp-highlights {
  background: var(--mnc-navy, #0d1b2a);
  padding: 12vh 5%;
  position: relative;
  overflow: hidden;
}

.fp-highlights::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,181,109,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.fp-highlights__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.fp-highlights__header {
  margin-bottom: 60px;
}

.fp-highlights__header h2 {
  color: #fff;
}

.fp-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.fp-stat {
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s ease, background 0.4s ease;
}

.fp-stat:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
}

.fp-stat__number {
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: 'Georgia', serif;
  color: var(--mnc-gold, #d7b56d);
  margin-bottom: 12px;
}

.fp-stat__line {
  width: 40px;
  height: 2px;
  background: var(--mnc-gold, #d7b56d);
  margin: 0 auto 16px;
  opacity: 0.5;
  transition: width 0.4s ease, opacity 0.4s ease;
}

.fp-stat:hover .fp-stat__line {
  width: 60px;
  opacity: 1;
}

.fp-stat__label {
  font-family: sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}


/* --- SPECIFICATIONS TABLE --- */
.fp-specs {
  padding: 12vh 5%;
  background: #fff;
}

.fp-specs__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fp-specs__header {
  text-align: center;
  margin-bottom: 50px;
}

.fp-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.fp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
}

.fp-table thead {
  background: var(--mnc-navy, #0d1b2a);
}

.fp-table thead th {
  padding: 20px 24px;
  text-align: left;
  color: var(--mnc-gold, #d7b56d);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  border-bottom: 3px solid var(--mnc-gold, #d7b56d);
}

.fp-table tbody tr {
  background: #fff;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.fp-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.fp-table tbody tr:hover {
  background: rgba(215,181,109,0.08);
}

.fp-table tbody td {
  padding: 20px 24px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: middle;
}

.fp-table tbody td strong {
  color: var(--mnc-navy, #0d1b2a);
  font-weight: 700;
}

.fp-table__size {
  display: inline-block;
  background: rgba(13,27,42,0.06);
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--mnc-navy, #0d1b2a);
}

.fp-table__btn {
  background: var(--mnc-navy, #0d1b2a);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fp-table__btn:hover {
  background: var(--mnc-gold, #d7b56d);
  color: var(--mnc-navy, #0d1b2a);
  transform: scale(1.05);
}

.fp-table__btn i {
  font-size: 12px;
}


/* --- WHY CHOOSE SECTION (Features) --- */
.fp-features {
  padding: 12vh 5%;
  background: var(--mnc-grey, #f5f5f7);
}

.fp-features__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fp-features__header {
  text-align: center;
  margin-bottom: 60px;
}

.fp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.fp-feature {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.fp-feature::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mnc-gold, #d7b56d);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fp-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(215,181,109,0.2);
}

.fp-feature:hover::before {
  transform: scaleX(1);
}

.fp-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(215,181,109,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--mnc-gold, #d7b56d);
  transition: background 0.4s ease, transform 0.4s ease, color 0.4s ease;
}

.fp-feature:hover .fp-feature__icon {
  background: var(--mnc-gold, #d7b56d);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.fp-feature h3 {
  font-size: 18px;
  color: var(--mnc-navy, #0d1b2a);
  margin: 0 0 12px;
  font-family: 'Georgia', serif;
}

.fp-feature p {
  font-size: 14px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}


/* --- CTA SECTION --- */
.fp-cta {
  padding: 12vh 5%;
  background: var(--mnc-navy, #0d1b2a);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fp-cta::before,
.fp-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(215,181,109,0.04);
  pointer-events: none;
}

.fp-cta::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  animation: floatDeco 12s ease-in-out infinite;
}

.fp-cta::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -100px;
  animation: floatDeco 9s ease-in-out infinite reverse;
}

.fp-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.fp-cta__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: 'Georgia', serif;
  color: #fff;
  margin: 0 0 20px;
}

.fp-cta__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin: 0 0 40px;
  font-family: sans-serif;
}

.fp-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.fp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.fp-cta__btn--primary {
  background: var(--mnc-gold, #d7b56d);
  color: var(--mnc-navy, #0d1b2a);
}

.fp-cta__btn--primary:hover {
  background: #e8c87e;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(215,181,109,0.3);
}

.fp-cta__btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.fp-cta__btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}


/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .fp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fp-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fp-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fp-hero {
    height: 50vh;
    min-height: 360px;
  }

  .fp-hero__content {
    padding-top: 60px;
  }

  .fp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fp-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fp-stat {
    padding: 28px 16px;
  }

  .fp-features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Table: responsive card layout */
  .fp-table thead {
    display: none;
  }

  .fp-table tbody,
  .fp-table tbody tr,
  .fp-table tbody td {
    display: block;
    width: 100%;
  }

  .fp-table tbody tr {
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  }

  .fp-table tbody td {
    padding: 8px 0;
    border: none;
    text-align: left;
  }

  .fp-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mnc-gold, #d7b56d);
    margin-bottom: 4px;
  }

  .fp-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .fp-cta__btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .fp-highlights__grid {
    grid-template-columns: 1fr;
  }

  .fp-hero__title {
    font-size: 2rem;
  }

  .fp-breadcrumb {
    font-size: 11px;
  }
}
