/* =========================================================
   AIPL — PREMIUM REAL ESTATE WEBSITE
   Design tokens: off-white ground, charcoal ink, bronze accent
   Display: 'Fraunces' (serif, warm, editorial)
   Body/UI: 'Manrope' (clean geometric sans)
   ========================================================= */

:root {
  --color-bg: #FAF8F4;
  --color-bg-alt: #F1ECE3;
  --color-ink: #1B1A17;
  --color-ink-soft: #4A473F;
  --color-charcoal: #201F1C;
  --color-charcoal-2: #171613;
  --color-bronze: #A67C43;
  --color-bronze-light: #C79A5D;
  --color-bronze-dark: #7C5A2E;
  --color-line: #E3DCCE;
  --color-white: #FFFFFF;
  --color-success: #4C6B4F;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1320px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 10px rgba(27, 26, 23, 0.06);
  --shadow-md: 0 10px 30px rgba(27, 26, 23, 0.10);
  --shadow-lg: 0 24px 60px rgba(27, 26, 23, 0.16);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --header-h: 84px;
  --header-h-scrolled: 64px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: #ffffff;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0 0 1rem;
  color: var(--color-ink-soft);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-bronze);
  outline-offset: 3px;
}

.container {
  max-width: var(--container-max);
}



/* Eyebrow / labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #ffffff;
}

.section-heading {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: .9rem;
}

.section-sub {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.price-section-list {
  width: 90%;
  margin: 0 auto;
}

.gallery-information {
  position: relative;
  overflow: hidden;
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
  color: var(--gold);
  width: 44px;
  height: 44px;
  background: rgba(11, 11, 12, 0.55);
  border-radius: 50%;
}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after {
  font-size: 16px;
}

.gallerySwiper .swiper-button-next:after,
.gallerySwiper .swiper-button-prev:after {
  color: #fff;
}

.highlight-swiper .swiper-button-next,
.highlight-swiper .swiper-button-prev {
  color: var(--gold);
  width: 44px;
  height: 44px;
  background: rgba(11, 11, 12, 0.55);
  border-radius: 50%;
}

.highlight-swiper .swiper-button-next::after,
.highlight-swiper .swiper-button-prev::after {
  font-size: 16px;
}

.highlight-swiper .swiper-button-next:after,
.highlight-swiper .swiper-button-prev:after {
  color: #fff;
}

.highlight-section-info {
  position: relative;
  overflow: hidden;
}

.highlight-information {
  width: 90%;
  margin: 0 auto;
}

.gallery-img {
  box-shadow: 0 0 3px #000;
  border-radius: 10px;
}

.gallery-img img {
  border-radius: 10px;
}

.location-information {
  margin-top: 20px;
}

.location-img {
  box-shadow: 0 0 3px #7e7c7c;
  border-radius: 10px;
}

.location-img img {
  border-radius: 10px;
}

.amenities-inn {
  width: 90%;
  margin: 0 auto;
}

.amenities-inforamtion-info {
  position: relative;
  overflow: hidden;
}

.section-head {
  margin-bottom: 3rem;
  text-align: Center;
}

.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-head .section-sub.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.padding-space-extra {
  padding: 60px 0;
  position: relative;
}

.bg-alt {
  background: var(--color-bg-alt);
}

.bg-dark {
  background: var(--color-charcoal);
  color: #EFEAE0;
}

.bg-dark p {
  color: #C9C2B4;
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: #FBF8F2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 10px 40px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--color-bronze);
  color: #fff;
  border-color: var(--color-bronze);
}

.btn-gold:hover {
  background: var(--color-bronze-dark);
  border-color: var(--color-bronze-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--color-charcoal);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.btn-outline-dark:hover {
  background: var(--color-ink);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: .6rem 1.3rem;
  font-size: .82rem;
}

.btn-block-mobile {
  width: 100%;
}

/* HEADER CSS STARTS */
header {
  position: fixed;
  width: 93%;
  left: 50%;
  top: 6px;
  z-index: 99;
  background-color: #fff;
  padding: 10px 0;
  -moz--webkit-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: translate(-50%);
  border-radius: 10px;
}

.newClass {
  background-color: #fff;
  box-shadow: 0 0 1px #000000;
  z-index: 999;
  border-radius: 10px;
}

.inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  max-width: 86px;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section {
  background: url('../images/amenities.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: block;
}

p.banner-inner.price-info {
  font-family: 'Lato-LightItalic';
  font-size: 25px;
}

.menu ul li a {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  padding: 0px 15px;
  text-transform: uppercase;
  -moz--webkit-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  letter-spacing: 1px;
}

.project-overview-section .know-more {
  text-align: left;
}

.contact-number {
  display: flex;
}

.contact-number a {
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  padding: 10px 15px;
  -moz--webkit-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.responsiv-mobile {
  display: none;
}

/* HEADER CSS ENDS */
/* =========================================================
   HERO
   ========================================================= */
.desktop-banner {
  display: block;
}

.tab-banner {
  display: none;
}

.mobile-banner {
  display: none;
}

.banner-section {
  padding: 0;
  position: Relative;
  overflow: hidden;
}

.banner-section .container-fluid {
  padding: 0;
}

.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 14, 12, .55) 0%, rgba(15, 14, 12, .45) 45%, rgba(15, 14, 12, .85) 100%);
}

.banner-information h1 {
  color: #fff;
  font-size: 58px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn .9s var(--ease) .15s forwards;
  font-weight: 300;
}

.banner-information {
  position: absolute;
  top: 35%;
  left: 50%;
  text-align: center;
  width: 60%;
  transform: translate(-50%);
}

.banner-information .hero-subtitle {
  color: #E7E1D3;
  font-size: 16px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn .9s var(--ease) .35s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn .9s var(--ease) .5s forwards;
  justify-content: center;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  opacity: .75;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: #fff;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: .4;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* =========================================================
   PROJECT CARDS
   ========================================================= */
.project-section-information {
  width: 90%;
  margin: 0 auto;
}

.project-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
}

/* Custom Scrollbar (Chrome, Edge, Safari) */
.more-text::-webkit-scrollbar {
  width: 6px;
}

.more-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.more-text::-webkit-scrollbar-thumb {
  background: #1d3d70;
  border-radius: 10px;
}

.more-text::-webkit-scrollbar-thumb:hover {
  background: #1d3d70;
}

.read-more-btn {
  border: none;
  background: 0 0;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  transition: color 0.3s;
}

.more-text {
  display: none;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 10px;
  margin-top: 15px;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card .img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.project-card:hover .img-wrap img {
  transform: scale(1.09);
}

.project-card .status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(27, 26, 23, .85);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .8rem;
  border-radius: 2px;
}

.project-card .status-badge.ready {
  background: var(--color-success);
}

.project-card .card-body-custom {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card .project-title {
  font-size: 1.28rem;
  margin-bottom: .35rem;
}

.project-card .project-loc {
  font-size: .85rem;
  color: var(--color-ink-soft);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.project-card .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 1.2rem;
}

.project-card .meta-row .meta {
  font-size: .8rem;
  color: var(--color-ink-soft);
}

.project-card .meta-row .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-bronze-dark);
}

.project-card .card-actions {
  display: flex;
  gap: .7rem;
  margin-top: auto;
}

.project-card .card-actions .btn {
  flex: 1;
  padding: .7rem 1rem;
  font-size: .8rem;
}

/* =========================================================
   ABOUT DEVELOPER
   ========================================================= */
.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-media .exp-badge {
  position: absolute;
  bottom: -1.6rem;
  right: -1rem;
  background: var(--color-bronze);
  color: #fff;
  text-align: center;
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
}

.about-media .exp-badge .num {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.about-media .exp-badge .txt {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}


.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.4rem 0;
}

.stat-item {
  border-left: 2px solid var(--color-bronze);
  padding-left: 1rem;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-ink);
  display: flex;
}

.stat-item .stat-label {
  font-size: .8rem;
  color: var(--color-ink-soft);
  margin-top: .2rem;
}


/* =========================================================
   FEATURED PROJECT (Riviera spotlight)
   ========================================================= */
.featured-project {
  background: var(--color-charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-lg);
}

.featured-project .fp-media {
  position: relative;
  min-height: 420px;
}

.featured-project .fp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-project .fp-content {
  padding: 3.2rem;
  color: #EFEAE0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-project h3 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: .6rem;
}

.featured-project .fp-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin: 1.6rem 0;
}

.featured-project .fp-facts div {
  min-width: 110px;
}

.featured-project .fp-facts .label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #B9AF9B;
  margin-bottom: .25rem;
}

.featured-project .fp-facts .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}


/* =========================================================
   FEATURE / WHY CHOOSE US
   ========================================================= */
.feature-box {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  height: 100%;
  transition: all .35s var(--ease);
}

.feature-box:hover {
  border-color: var(--color-bronze);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-box .f-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-bronze);
  margin-bottom: 1.3rem;
  transition: all .35s var(--ease);
}

.feature-box:hover .f-icon {
  background: var(--color-bronze);
  color: #fff;
  transform: rotate(-8deg);
}

.feature-box h4 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.feature-box p {
  font-size: .92rem;
  margin-bottom: 0;
}

p.highlight-point {
  font-size: 13px;
  text-align: justify;
}

/* =========================================================
   HIGHLIGHTS (Riviera)
   ========================================================= */
.highlight-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 20px 10px;
  text-align: center;
  height: 100%;
  transition: all .35s var(--ease);
}

.highlight-card .h-icon {
  font-size: 1.7rem;
  color: var(--color-bronze);
  margin-bottom: 1rem;
  transition: color .35s var(--ease);
}

.highlight-card h4 {
  font-size: 1rem;
  margin-bottom: 0;
  transition: color .35s var(--ease);
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem .5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-ink);
}

.faq-question .plus {
  flex-shrink: 0;
  margin-left: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .35s var(--ease), background .35s var(--ease);
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: '';
  position: absolute;
  background: var(--color-bronze);
  transition: all .3s var(--ease);
}

.faq-question .plus::before {
  width: 12px;
  height: 1.5px;
}

.faq-question .plus::after {
  width: 1.5px;
  height: 12px;
}

.faq-item.active .faq-question .plus {
  background: var(--color-bronze);
  transform: rotate(180deg);
}

.faq-item.active .faq-question .plus::after {
  height: 0;
}

.faq-item.active .faq-question .plus::before {
  background: #fff;
}

.faq-item.active .faq-question .plus::after {
  background: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq-answer-inner {
  padding: 0 .5rem 1.5rem;
  color: var(--color-ink-soft);
  font-size: .95rem;
  max-width: 760px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-charcoal-2);
  color: #C9C2B4;
  padding-top: 5rem;
}

.site-footer h5 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.site-footer .footer-brand {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.site-footer ul li {
  margin-bottom: .7rem;
}

.site-footer a:hover {
  color: var(--color-bronze-light);
}

.site-footer .foot-desc {
  color: #9C9585;
  font-size: .92rem;
  max-width: 320px;
}

.social-row {
  display: flex;
  gap: .7rem;
  margin-top: 1.4rem;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.social-row a:hover {
  background: var(--color-bronze);
  border-color: var(--color-bronze);
  color: #fff;
}

.footer-contact-item {
  display: flex;
  gap: .8rem;
  margin-bottom: 1.1rem;
  font-size: .92rem;
}

.footer-contact-item i {
  color: var(--color-bronze);
  margin-top: .2rem;
}

.footer-bottom {
  padding: 10px 0;
  font-size: .8rem;
  color: #8A8374;
  margin-bottom: 0;
}

.footer-bottom a {
  color: #8A8374;
}

.footer-contact-item i {
  color: var(--color-bronze);
  margin-top: .2rem;
}

p.footer-heading {
  color: #fff;
}

.footer-inner h3 {
  text-align: center;
  color: #fff;
  font-weight: 300;
  margin-bottom: 20px;
}

.footer-disclaimer {
  font-size: .75rem;
  color: #726C5F;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.6rem;
  margin-top: 1.6rem;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease);
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-bronze);
}

/* =========================================================
   ENQUIRY MODAL
   ========================================================= */
.enquiry-modal .modal-content {
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.enquiry-modal .modal-header {
  background: var(--color-charcoal);
  color: #fff;
  border: none;
  padding: 1.6rem 1.8rem;
}

.enquiry-modal .modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.enquiry-modal .modal-header .close {
  color: #fff;
  opacity: .8;
  text-shadow: none;
}

.enquiry-modal .modal-body {
  padding: 1.8rem;
}

.form-control-custom {
  border: 1px solid var(--color-line);
  border-radius: 2px;
  padding: .75rem 1rem;
  font-size: .92rem;
  width: 100%;
  background: var(--color-bg);
  transition: border-color .3s var(--ease);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--color-bronze);
}

.form-group-custom {
  margin-bottom: 1.1rem;
}

.form-group-custom label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: .4rem;
  display: block;
}

.form-error {
  color: #B23A3A;
  font-size: .76rem;
  margin-top: .3rem;
  display: none;
}

.is-invalid .form-control-custom {
  border-color: #B23A3A;
}

.is-invalid .form-error {
  display: block;
}

.form-success-msg {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success-msg .s-icon {
  font-size: 2.6rem;
  color: var(--color-success);
  margin-bottom: 1rem;
}

/* =========================================================
   GENERIC UTILITIES
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--color-bronze);
  margin: 1.4rem 0;
}

.text-bronze {
  color: var(--color-bronze);
}

/* =========================================================
   RIVIERA HERO INFO BOXES (variant, reuses .hero-infobar)
   ========================================================= */
.property-tag-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  justify-content: center;
}

.property-tag-strip .tag {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.4rem;
}

.gallery-tab-btn {
  background: transparent;
  border: 1px solid var(--color-line);
  padding: .6rem 1.4rem;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 2px;
  color: var(--color-ink-soft);
  transition: all .3s var(--ease);
}

.gallery-tab-btn.active,
.gallery-tab-btn:hover {
  background: var(--color-charcoal);
  color: #fff;
  border-color: var(--color-charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid .g-item {
  display: none;
}

.gallery-grid .g-item.show {
  display: block;
}

.g-item .g-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.g-item .g-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.g-item .g-frame:hover img {
  transform: scale(1.08);
}

.g-frame .g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 26, 23, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s var(--ease);
}

.g-frame:hover .g-overlay {
  background: rgba(27, 26, 23, .4);
}

.g-frame .g-overlay span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: all .35s var(--ease);
  font-size: 1rem;
}

.g-frame:hover .g-overlay span {
  opacity: 1;
  transform: scale(1);
}



/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 12, .94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease);
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-bronze);
  border-color: var(--color-bronze);
}

.lightbox-close {
  top: 1.6rem;
  right: 1.6rem;
}

.lightbox-prev {
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}

.overview-section-infromation {
  width: 90%;
  margin: 0 auto;
}

/* =========================================================
   PRICE TABLE
   ========================================================= */
.price-table-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.price-table thead th {
  background: var(--color-charcoal);
  color: #fff;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-weight: 700;
}

.price-table tbody td {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--color-line);
  font-size: .95rem;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr {
  transition: background .25s var(--ease);
}

.price-table tbody tr:hover {
  background: var(--color-bg-alt);
}

.price-table .type-cell {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.price-table .price-cell {
  color: var(--color-bronze-dark);
  font-weight: 700;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-note {
  font-size: .8rem;
  color: var(--color-ink-soft);
  margin-top: 1rem;
}

.location-information-in {
  width: 90%;
  margin: 0 auto;
}

.floor-btn {
  margin-top: 20px;
}

/* =========================================================
   OVERVIEW INFO GRID
   ========================================================= */
.faq-section-info {
  width: 90%;
  margin: 0 auto;
}

.info-box {
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 20px;
}

.info-box .label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-ink-soft);
  font-weight: 700;
  margin-bottom: .3rem;
}

.info-box .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}

/* =========================================================
   FLOOR PLAN
   ========================================================= */
.floorplan-tabs {
  display: flex;
  gap: .6rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.fp-tab-btn {
  border: 1px solid var(--color-line);
  background: #fff;
  padding: .7rem 1.6rem;
  font-weight: 700;
  font-size: .88rem;
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.fp-tab-btn.active,
.fp-tab-btn:hover {
  background: var(--color-bronze);
  color: #fff;
  border-color: var(--color-bronze);
}

.fp-pane {
  display: none;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.fp-pane.show {
  display: block;
}

.fp-visual {
  text-align: center;
}

.fp-visual img {
  border-radius: var(--radius-sm);
  margin: 0 auto;
}

.fp-details {
  padding: 1rem 0 0 0;
}

.fp-details .fd-row {
  display: flex;
  justify-content: space-between;
  padding: .8rem 0;
  border-bottom: 1px solid var(--color-line);
}

.fp-details .fd-row span:first-child {
  color: var(--color-ink-soft);
  font-size: .9rem;
}

.fp-details .fd-row span:last-child {
  font-weight: 700;
  font-family: var(--font-display);
}

/* =========================================================
   AMENITIES
   ========================================================= */
.amenity-item {
  text-align: center;
  padding: 1.8rem 1rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  height: 100%;
  transition: all .3s var(--ease);
}

.amenity-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-bronze);
  box-shadow: var(--shadow-sm);
}

.amenity-item .a-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--color-bg-alt);
  color: var(--color-bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.amenity-item h5 {
  font-size: .92rem;
  font-family: var(--font-body);
  font-weight: 700;
}

/* =========================================================
   LOCATION / CONNECTIVITY
   ========================================================= */
.connectivity-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  margin-bottom: .9rem;
  transition: all .3s var(--ease);
}

.connectivity-card:hover {
  border-color: var(--color-bronze);
  transform: translateX(4px);
}

.connectivity-card .c-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.connectivity-card .c-title {
  font-weight: 700;
  font-size: .92rem;
}

.connectivity-card .c-dist {
  font-size: .8rem;
  color: var(--color-ink-soft);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  height: 100%;
  min-height: 420px;
  background: var(--color-bg-alt);
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  display: none;
  background: #fff;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .12);
  border-top: 1px solid var(--color-line);
}

.mobile-sticky-cta .msc-inner {
  display: flex;
}

.floor-plan-information {
  width: 90%;
  margin: 0 auto;
}

.mobile-sticky-cta a,
.mobile-sticky-cta button {
  flex: 1;
  border: none;
  background: none;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--color-ink);
  border-right: 1px solid var(--color-line);
}

.mobile-sticky-cta a:last-child,
.mobile-sticky-cta button:last-child {
  border-right: none;
}

.mobile-sticky-cta .msc-enquire {
  background: var(--color-bronze);
  color: #fff;
}

.mobile-sticky-cta .msc-icon {
  font-size: 1.1rem;
}

/* Prevent any horizontal overflow */
html,
body {
  max-width: 100%;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.row>[class*="col"] {
  padding-left: 12px;
  padding-right: 12px;
}

/* =========================================================
   MEDIA QUERIES — ALL RESPONSIVE RULES
   ========================================================= */
@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width:575px) {
  .about-media .exp-badge {
    right: .5rem;
    bottom: -1.2rem;
    padding: 1rem;
  }
}

@media (max-width:767px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:991px) {
  .featured-project {
    grid-template-columns: 1fr;
  }

  .featured-project .fp-content {
    padding: 2.2rem;
  }
}

@media (max-width:767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:575px) {
  .lightbox-prev {
    left: .5rem;
  }

  .lightbox-next {
    right: .5rem;
  }

  .lightbox-close {
    top: .8rem;
    right: .8rem;
  }
}

@media (max-width:767px) {
  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }

  section {
    padding: 4rem 0;
  }
}

@media (max-width:1399.98px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width:1199.98px) {
  .container {
    max-width: 960px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
  }

  .featured-project .fp-content {
    padding: 2.4rem;
  }

  .stat-grid {
    gap: 1.1rem;
  }
}

@media (max-width:991.98px) {
  .container {
    max-width: 720px;
  }

  section {
    padding: 5rem 0;
  }

  .main-nav {
    width: 100%;
    max-width: 100%;
  }

  .header-actions-line span.hide-mobile {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-box-grid {
    grid-template-columns: 1fr 1fr;
  }

  .button_container {
    position: absolute;
    top: 50%;
    right: 0;
    height: 29px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.25s ease;
    transform: translateY(-50%);
  }

  .button_container span {
    background: #000;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
    border-radius: 31px;
  }

  .overlay {
    position: fixed;
    background: #fff;
    top: 73px;
    left: 0;
    width: 100%;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    max-height: 0;
    -webkit-transition: max-height .3s, -webkit-transform .3s;
    transition: max-height .3s, -webkit-transform .3s;
    -o-transition: max-height .3s, transform .3s;
    transition: max-height .3s, transform .3s;
    transition: max-height .3s, transform .3s, -webkit-transform .3s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    overflow: auto;
  }

  .overlay.open {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    max-height: 100vh;
  }

  .overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    width: 100%;
  }

  .overlay nav {
    text-align: center;
  }

  .overlay.open li {
    opacity: 1;
    border-bottom: 1px solid gray;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #000;
  }

  .button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #000;
  }

  .button_container.active .middle {
    opacity: 0;
    background: #000;
  }

  .button_container span:nth-of-type(2) {
    top: 11px;
    width: 61%;
    height: 3px;
    right: 0;
    left: auto;
  }

  .button_container span:nth-of-type(3) {
    top: 22px;
  }

  .desktop-banner {
    display: none;
  }

  .tab-banner {
    display: block;
  }

  .mobile-banner {
    display: none;
  }

  .overview-img {
    display: none;
  }

  .highlight-information {
    width: 100%;
  }

  .banner-information {
    width: 80%;
  }

  .price-section-list {
    width: 100%;
  }

  .overview-section-infromation {
    width: 100%;
  }

  .banner-information h1 {
    font-size: 48px;
  }

  .section-heading {
    font-size: 32px;
    margin-bottom: 0;
  }

  .floor-plan-information {
    width: 100%;
  }

  .location-information-in {
    width: 100%;
  }

  .faq-section-info {
    width: 100%;
  }
}

@media (max-width:767.98px) {
  .container {
    max-width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  section {
    padding: 4rem 0;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .info-box {
    margin-bottom: 20px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 1.5rem);
  }

  .hero-infobar {
    margin-top: 2rem;
  }

  .featured-project {
    border-radius: var(--radius-md);
  }

  .about-media {
    margin-bottom: 3rem;
  }

  .info-box-grid {
    grid-template-columns: 1fr;
  }

  header {
    width: 100%;
    top: 0;
    border-radius: 0;
  }

  .newClass {
    border-radius: 0;
  }

  .banner-section {
    margin-top: 70px;
  }

  .banner-information {
    top: 20%;
  }
}

@media (max-width:575.98px) {
  .desktop-banner {
    display: none;
    ;
  }
    .banner-section {
        margin-top: 67px;
    }
  .tab-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .banner-information {
    top: 50%;
    width: 90%;
  }

  .banner-information h1 {
    font-size: 37px;
  }

  .hero .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .section-heading {
    font-size: 29px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-card .card-actions {
    flex-direction: column;
  }

  .featured-project .fp-facts {
    gap: 1rem;
  }

  .price-table thead th,
  .price-table tbody td {
    padding: .9rem 1rem;
    font-size: .85rem;
  }

  .desktop-banner {
    display: none;
  }

  .tab-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }

  .banner-information {
    top: 50%;
  }

  .property-tag-strip .tag {
    font-size: 14px;
  }

  .banner-information {
    width: 90%;
  }
}

@media (max-width:470.98px) {
  .banner-information h1 {
    font-size: 36px;
  }
      .banner-information h1 {
        font-size: 33px;
    }
        .banner-information {
        width: 94%;
    }
    .banner-information {
        top: 24%;
    }
  .section-heading {
    font-size: 23px;
  }

  .overview-section-infromation p {
    font-size: 14px;
    text-align: justify;
  }

  .faq-question {
    font-size: 15px;
  }

  .footer-inner h3 {
    font-size: 20px;
  }

}