/* ==================================================
   TOKENS
   ================================================== */
:root {
  --black: #0B0B0C;
  --charcoal: #1C1B19;
  --charcoal-2: #242220;
  --offwhite: #F6F2E9;
  --beige: #E9E0CD;
  --gold: #C9A660;
  --gold-light: #E4CE9B;
  --bronze: #8B6F3F;
  --line: rgba(201, 166, 96, 0.28);
  --text-muted: rgba(246, 242, 233, 0.66);
  --ink-muted: rgba(11, 11, 12, 0.62);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1320px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 10px 16px;
  z-index: 2000;
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Eyebrow / titles */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}

.section-lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 560px;
}

.section {
  padding: 96px 0;
}



/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover,
.btn-gold:focus {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-light {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(246, 242, 233, 0.55);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--offwhite);
  color: var(--black);
  border-color: var(--offwhite);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(28, 27, 25, 0.35);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--charcoal);
  color: var(--offwhite);
  border-color: var(--charcoal);
}

.btn-call-now {
  background: transparent;
  color: var(--offwhite);
  border: 1px solid rgba(246, 242, 233, 0.4);
  padding: 11px 18px;
}

.btn-call-now:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-inner h3 {
  font-size: 24px;
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-section-points {
  width: 90%;
  margin: 0 auto;
}

.developer-section .read-more-btn {
  color: #c9a660;
}

button:focus {
  outline: 1px dotted;
  outline: none;
}

/* ==================================================
   HEADER
   ================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 18px 0;
}

.site-header.scrolled {
  background: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--offwhite);
}

.brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}

.main-nav-list {
  gap: 6px;
}

.main-nav-list .nav-link {
  color: rgba(246, 242, 233, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 14px !important;
  position: relative;
}

.main-nav-list .nav-link:hover {
  color: var(--gold);
}

.nav-cta .btn {
  padding: 11px 22px;
}

.navbar-toggler {
  padding: 8px 10px;
  border-radius: 2px;
}

.toggler-line {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--offwhite);
  margin: 4px 0;
}



/* ==================================================
   HERO
   ================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, black, transparent);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.55) 0%, rgba(11, 11, 12, 0.35) 42%, rgba(11, 11, 12, 0.92) 100%);
}

.hero-frame {
  position: absolute;
  inset: 32px;
  z-index: 1;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: var(--gold);
}

.corner-tl {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.corner-tr {
  top: 0;
  right: 0;
  border-top: 1px solid;
  border-right: 1px solid;
}

.corner-bl {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.price-table thead th,
.price-table tbody td {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.price-table th:not(:last-child),
.price-table td:not(:last-child) {
  border-right: 1px solid #ddd;
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 6%;
  top: 30%;
}

.hero-logo {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 700;
}

.price-info {
  width: 90%;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 50px;
  line-height: 1.02;
  margin-bottom: 22px;
  color: #fff;
}

.hero-title span {
  display: block;
  font-weight: 500;
  color: var(--gold-light);
}

.hero-location {
  font-size: 25px;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  color: rgb(255 249 234 / 86%);
  font-family: var(--font-display);
}

.hero-location i {
  color: var(--gold);
  margin-right: 6px;
}

.hero-desc {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(246, 242, 233, 0.78);
  margin-bottom: 34px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  max-width: 420px;
}

.hero-price .label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-price .value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--offwhite);
}

.hero-price sup {
  color: var(--gold);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
}

.scroll-coords {
  writing-mode: vertical-rl;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
}

.scroll-line::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    top: 0;
    opacity: 1;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}




/* ==================================================
   OVERVIEW
   ================================================== */
.overview-section {
  background: var(--offwhite);
}

.overview-media {
  position: relative;
}

.overview-media img {
  border-radius: 2px;
}

.overview-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--black);
  color: var(--offwhite);
  padding: 14px 20px;
  border-left: 2px solid var(--gold);
}

.tag-eyebrow {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.tag-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.spec-grid {
  margin-top: 12px;
  margin-bottom: 30px;
}

.spec-grid>div {
  padding: 18px 12px 18px 0;
  border-top: 1px solid var(--line);
}

.spec-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.spec-label {
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.overview-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==================================================
   GALLERY
   ================================================== */
.gallery-section {
  background: var(--charcoal);
  color: var(--offwhite);
}

.gallery-section .eyebrow {
  color: var(--gold-light);
}

.gallery-section .section-title {
  color: var(--offwhite);
}

.gallerySwiper {
  padding-bottom: 56px;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3.2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(11, 11, 12, 0.85), transparent);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.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-pagination-bullet {
  background: var(--offwhite);
  opacity: 0.4;
}

.gallerySwiper .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

/* ==================================================
   HIGHLIGHTS
   ================================================== */
.highlights-section {
  background: var(--offwhite);
}

.highlight-grid {
  margin-top: 20px;
}

.highlight-card {
  padding: 34px 22px;
  border: 1px solid var(--line);
  border-radius: 2px;
  height: 100%;
  background: #fff;
}

.highlight-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.highlight-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.highlight-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.highlightSwiper .swiper-button-next,
.highlightSwiper .swiper-button-prev {
  color: var(--gold);
  width: 44px;
  height: 44px;
  background: rgba(11, 11, 12, 0.55);
  border-radius: 50%;
}

.highlightSwiper .swiper-button-next::after,
.highlightSwiper .swiper-button-prev::after {
  font-size: 16px;
}

.highlightSwiper .swiper-pagination-bullet {
  background: var(--offwhite);
  opacity: 0.4;
}

.highlightSwiper .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

.more-text::-webkit-scrollbar {
  width: 6px;
}

.more-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.more-text::-webkit-scrollbar-thumb {
  background: #c9a660;
  border-radius: 10px;
}

.more-text::-webkit-scrollbar-thumb:hover {
  background: #c9a660;
}

.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;
}

/* ==================================================
   PRICE
   ================================================== */
.price-section {
  background: var(--beige);
}

.price-table-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  min-width: 650px;
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.price-table th,
.price-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.price-table thead th {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--offwhite);
  background: var(--charcoal);
  font-weight: 700;
}

.price-table tbody tr:hover {
  background: rgba(201, 166, 96, 0.08);
}

.price-table td:last-child {
  font-family: var(--font-display);
  color: var(--bronze);
  font-size: 1.02rem;
}

.price-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 14px;
}

.floor-section {
  background: var(--charcoal);
  color: var(--offwhite);
}

.floor-plan-section {
  text-align: center;
}

.floor-plan-section .section-title {
  color: #fff;
}

.floor-plan-info {
  background: #c9a660;
  color: #000;
}

.floor-plan-info p {
  font-size: 20px;
  margin-bottom: 0;
  padding: 10px 0;
  font-family: var(--font-display);
}

/* ==================================================
   DEVELOPER
   ================================================== */
.developer-section {
  background: var(--charcoal);
  color: var(--offwhite);
}

.developer-section .eyebrow {
  color: var(--gold-light);
}

.developer-section .section-title,
.developer-section h2 {
  color: var(--offwhite);
}

.developer-section .section-lead {
  color: var(--text-muted);
}

.developer-img {
  border-radius: 2px;
}

.stat-grid {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* ==================================================
   LOCATION
   ================================================== */
.location-section {
  background: var(--offwhite);
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.distance-grid>div {
  margin-bottom: 16px;
}

.distance-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.distance-card i {
  color: var(--gold);
  font-size: 1.2rem;
}

.d-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0;
}

.d-label {
  font-size: 18px;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.logo {
  filter: invert(1);
  max-width: 122px;
}

/* ==================================================
   AMENITIES
   ================================================== */
.amenities-section {
  background: var(--black);
  color: var(--offwhite);
}

.amenities-section .eyebrow {
  color: var(--gold-light);
}

.amenities-section .section-title {
  color: var(--offwhite);
}

.amenities-swiper {
  padding-bottom: 8px;
}

.amenity-card {
  border: 1px solid rgba(246, 242, 233, 0.16);
  border-radius: 2px;
  padding: 34px 16px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
}

.amenity-card:hover {
  border-color: var(--gold);
  background: rgba(201, 166, 96, 0.06);
}

.amenity-card i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.amenity-card p {
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.amenities-swiper .swiper-button-next,
.amenities-swiper .swiper-button-prev {
  color: var(--gold);
  width: 40px;
  height: 40px;
  background: rgba(246, 242, 233, 0.06);
  border-radius: 50%;
  top: 40%;
}

.amenities-swiper .swiper-button-next::after,
.amenities-swiper .swiper-button-prev::after {
  font-size: 14px;
}

/* ==================================================
   FAQ
   ================================================== */
.faq-section {
  background: var(--offwhite);
}

.faq-section-info {
  width: 90%;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-heading {
  margin: 0;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(359deg);
}

.faq-body {
  padding: 0 4px 24px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.developer-section-information,
.location-info {
  width: 90%;
  margin: 0 auto;
}

/* ==================================================
   FOOTER
   ================================================== */
.site-footer {
  background: var(--black);
  color: rgba(246, 242, 233, 0.75);
  padding: 80px 0 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  color: var(--offwhite);
}

.footer-tagline {
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(246, 242, 233, 0.55);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(246, 242, 233, 0.24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links i {
  color: var(--gold);
  margin-right: 6px;
  width: 14px;
}

.footer-rera {
  font-size: 0.76rem;
  color: rgba(246, 242, 233, 0.45);
  margin-top: 16px;
}

.footer-divider {
  border-color: rgba(246, 242, 233, 0.12);
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(246, 242, 233, 0.45);
}

.footer-disclaimer {
  max-width: 760px;
  margin-bottom: 0;
}
.footer-inner form .form-group{
  margin-bottom:0;
}
/* ==================================================
   MODAL
   ================================================== */
.modal-content {
  border-radius: 2px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid var(--line);
  padding: 26px 30px 18px;
  align-items: flex-start;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 22px;
}

.modal-body {
  padding: 26px 30px 30px;
}

.modal-body label {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 700;
  margin-bottom: 6px;
}

.form-control {
  border-radius: 2px;
  border: 1px solid rgba(28, 27, 25, 0.2);
  padding: 12px 14px;
  height: auto;
  font-size: 0.94rem;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 166, 96, 0.18);
}

.form-control.is-invalid {
  border-color: #c0392b;
}

.invalid-feedback {
  display: none;
  font-size: 0.78rem;
}

.form-control.is-invalid~.invalid-feedback {
  display: block;
}

.form-status {
  font-size: 0.86rem;
  margin-bottom: 14px;
  min-height: 1.2em;
}

.form-status.success {
  color: #2e7d32;
}

.form-status.error {
  color: #c0392b;
}

.modal-actions {
  margin-top: 8px;
}

.modal-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.modal-actions-row .btn {
  flex: 1;
}



/* ==================================================
   FLOATING BUTTONS
   ================================================== */
.floating-buttons {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 16px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  overflow: hidden;
}

.float-btn i {
  font-size: 1.15rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.float-label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width var(--transition), opacity var(--transition);
}

.float-btn:hover .float-label {
  max-width: 120px;
  opacity: 1;
}

.float-whatsapp {
  background: #25D366;
  color: #fff;
}

.float-call {
  background: var(--charcoal);
  color: var(--offwhite);
}

.float-enquire {
  background: var(--gold);
  color: var(--black);
}



/* ==================================================
   LIGHTBOX
   ================================================== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  color: var(--offwhite);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

/* ==================================================
   RESPONSIVE FINE-TUNING
   ================================================== */







/* Reduced motion */


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-text {
  text-align: Center;
}

.desktop-banner {
  display: block;
}

.tab-banner {
  display: none;
}

.mobile-banner {
  display: none;
}

/* ==================================================
   ALL MEDIA QUERIES
   ================================================== */

@media (min-width:1600px) {
  .hero-title {
    font-size: 6rem;
  }
}

@media (max-width:1199.98px) {
  .hero-title {
    font-size: 46px;
  }

  .scroll-cue {
    left: 60%;
  }
}

@media (max-width:991.98px) {
  .section-title {
    font-size: 2rem;
  }

  .overview-cta {
    margin-top: 10px;
  }

  .scroll-cue {
    left: 86%;
  }

  .main-nav-list {
    padding: 18px 0 8px;
  }

  .desktop-banner {
    display: none;
  }

  .tab-banner {
    display: block;
  }

  .mobile-banner {
    display: none;
  }

  .main-nav-list .nav-link {
    padding: 12px 4px !important;
    border-bottom: 1px solid rgba(246, 242, 233, 0.08);
  }

  .navbar-collapse {
    background: rgba(11, 11, 12, 0.98);
    padding: 12px 24px 20px;
    margin: 14px -24px 0;
  }

  .nav-cta {
    padding-top: 14px;
    gap: 10px;
  }

  .nav-cta .btn {
    flex: 1;
    text-align: center;
  }

  .site-header.scrolled {
    padding: 10px;
  }

  .hero-title {
    font-size: 46px;
  }

  .navbar-toggler {
    padding: 0;
  }

  .site-header {
    padding: 18px;
  }

  .price-info {
    width: 95%;
  }

  .overview-media {
    display: none;
  }

  .section-lead {
    max-width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .developer-img {
    position: relative;
    overflow: hidden;
  }

  .faq-trigger {
    font-size: 20px;
  }

  .footer-heading {
    font-size: 17px;
  }
}

@media (max-width:767.98px) {

  .price-table th,
  .price-table td {
    padding: 16px 18px;
  }

  .map-embed {
    min-height: 280px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-location {
    font-size: 23px;
  }

  .hero-price {
    margin-bottom: 15px;
    max-width: 420px;
  }

  .hero-title {
    font-size: 39px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .highlight-card {
    padding: 24px 18px;
    margin-bottom: 16px;
  }

  .floor-plan-info {
    margin-bottom: 15px;
  }
}

@media (max-width:575.98px) {
  .eyebrow {
    font-size: 0.66rem;
  }

  .desktop-banner {
    display: none;
  }

  .tab-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .price-info {
    width: 100%;
  }

  .amenity-card {
    padding: 33px 0px;
  }

  .hero-price {
    max-width: 100%;
    text-align: center;
  }

  .hero-price .value {
    font-size: 25px;
    margin: 0 auto;
  }

  .floating-buttons {
    right: 14px;
    bottom: 16px;
    gap: 10px;
  }

  .float-btn {
    height: 46px;
    width: 46px;
    padding: 0;
    justify-content: center;
  }

  .float-btn .float-label {
    display: none;
  }

  .hero-title {
    font-size: 33px;
    margin-bottom: 10px;
  }

  .section-lead {
    font-size: 14px;
  }

  .faq-trigger {
    font-size: 15px;
  }

  .site-footer {
    padding: 39px 0 28px;
  }

  .footer-inner h3 {
    font-size: 16px;
  }
    .section {
      padding: 40px 0;
    }

    .hero-location {
      font-size: 20px;
    }

    .modal-actions-row {
      flex-direction: column;
    }

    .hero-desc {
      font-size: 0.92rem;
    }

    .hero-actions {
      width: 70%;
      margin: 0 auto;
    }

    .hero-actions .btn {
      width: 100%;
      text-align: center;
    }

    .scroll-cue {
      right: 18px;
      bottom: 18px;
    }

    .hero-section {
      margin-top: 88px;
    }

    .site-header {
      padding: 10px 18px;
      background: #000000;
    }

    .hero-content {
      top: 22%;
      left: 50%;
      text-align: center;
      width: 95%;
      transform: translate(-50%);
    }

    .scroll-cue {
      left: 50%;
      transform: translate(-50%);
      color: #fff !important;
      text-decoration: none !important;
    }

    .scroll-coords {
      writing-mode: horizontal-tb;
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .scroll-line {
      width: 45px;
      height: 1px;
      background: linear-gradient(180deg, var(--gold), transparent);
      position: relative;
    }

    .scroll-line::after {
      left: 50%;
      transform: translate(-50%);
    }

    .btn {
      padding: 9px 10px !important;
    }

    .hero-price {
      padding-top: 5px;
    }
.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: 85px !important;
}
}
  @media (max-width:480px) {
    .hero-location {
      font-size: 22px;
    }

  }

  @media (max-width:400px) {
    .hero-title {
      font-size: 28px;
    }

    .hero-location {
      font-size: 20px;
    }

    .hero-price .value {
      font-size: 22px;
    }

    .btn {
      padding: 9px 30px;
    }

  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }

    html {
      scroll-behavior: auto !important;
    }
  }