:root {
  --nav-height: 88px;
  --nav-height-scrolled: 64px;
  --hero-interval: 5000ms;
  --theme-primary: #169ed1;
  --theme-secondary: #0c6d94;
  --theme-accent: #14a8df;
  --theme-nav-bg: #ffffff;
  --theme-footer-bg: #0c2633;
  --theme-text-dark: #0f172a;
  --theme-text-light: #ffffff;
  --theme-heading-color: #102a3a;
  --theme-heading-underline-start: #169ed1;
  --theme-heading-underline-end: #57c4eb;
  --theme-icon-color: #169ed1;
  --theme-icon-bg: #e8f7fd;
  --theme-icon-border: #37aee2;
  --theme-tab-bg: #ffffff;
  --theme-tab-text: #0f7faa;
  --theme-tab-border: #bfe5f5;
  --theme-tab-hover-bg: #0c6d94;
  --theme-tab-hover-text: #ffffff;
  --theme-tab-active-bg: #169ed1;
  --theme-tab-active-text: #ffffff;
}

body {
  padding-top: var(--nav-height);
}

#mainNav {
  min-height: var(--nav-height);
  transition: min-height 0.28s ease, box-shadow 0.28s ease;
}

#mainNav .navbar-brand {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.brand-logo {
  height: 56px;
  width: auto;
  transition: height 0.28s ease, transform 0.28s ease;
  transform-origin: left center;
}

#mainNav .nav-link {
  color: #2e2e2e;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1.25rem 0.72rem;
  position: relative;
  transition: color 0.2s ease;
}

#mainNav .nav-link::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  top: 0;
  height: 3px;
  background: #169ed1;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-link:focus,
#mainNav .nav-link.active {
  color: #0c6d94;
}

#mainNav .nav-link.active {
  font-weight: 800;
}

#mainNav .nav-link:hover::before,
#mainNav .nav-link:focus::before,
#mainNav .nav-link.active::before {
  transform: scaleX(1);
}

#mainNav.navbar-scrolled {
  min-height: var(--nav-height-scrolled);
}

#mainNav.navbar-scrolled .brand-logo {
  height: 40px;
  transform: scale(0.98);
}

#mainNav.navbar-scrolled .nav-link {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.hero-section {
  position: relative;
}

.hero-image {
  height: min(72vh, 680px);
  object-fit: cover;
}

#heroCarousel .carousel-item {
  position: relative;
  overflow: hidden;
  height: min(72vh, 680px);
}

video.hero-video-cover {
  object-fit: cover;
}

video.hero-video-center {
  object-fit: contain;
  background: #000;
}

iframe.hero-video-center {
  background: #000;
}

iframe.hero-video-cover {
  border: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.hero-caption {
  right: auto;
  left: 12%;
  bottom: 22%;
  max-width: 520px;
}

.hero-title {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-title span {
  color: #169ed1;
}

.hero-subtitle {
  max-width: 480px;
  margin-bottom: 1.2rem;
  color: #eef7fb;
}

.hero-btn {
  color: #fff;
  background-color: #169ed1;
  border-color: #169ed1;
  padding: 0.6rem 1.2rem;
}

.hero-btn:hover,
.hero-btn:focus {
  color: #fff;
  background-color: #0f86b3;
  border-color: #0f86b3;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(22, 158, 209, 0.45);
  opacity: 1;
}

#heroCarousel .carousel-control-prev {
  left: 14px;
}

#heroCarousel .carousel-control-next {
  right: 14px;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.hero-progress-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding-bottom: 0.55rem;
}

.hero-progress {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.2rem, 0.8vw, 0.65rem);
}

.hero-progress-btn {
  border: 0;
  background: transparent;
  padding: 0;
  flex: 1 1 0;
  min-width: 0;
}

.hero-progress-track {
  display: block;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.hero-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: #14a8df;
  transform-origin: left center;
  transform: scaleX(0);
}

.hero-progress-btn.active .hero-progress-fill {
  animation: heroFill var(--hero-interval) linear forwards;
}

@keyframes heroFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-meta-strip {
  background: #0e9fd2;
  padding: 0.95rem 0;
}

.project-logo-holder {
  min-height: 52px;
  display: flex;
  align-items: center;
}

.project-logo {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-link i {
  line-height: 1;
}

.social-link:hover,
.social-link:focus {
  color: #0e9fd2;
  background: #fff;
  border-color: #fff;
}

.about-project-section {
  padding: 4.6rem 0 4.2rem;
  background: #f7f9fb;
}

.about-project-head {
  max-width: 860px;
  margin: 0 auto 2.6rem;
}

.about-project-intro {
  color: #4f5d69;
  line-height: 1.7;
  font-size: 1.02rem;
}

.project-info-grid {
  margin-top: 0.5rem;
}

.project-info-grid.project-info-grid-mobile-loop {
  overflow: hidden;
}

.project-info-track {
  display: contents;
}

.mobile-loop-track {
  display: contents;
}

.project-info-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.9rem 0.2rem 0.2rem;
  text-align: center;
  min-height: 168px;
}

.info-icon-wrap {
  position: relative;
  width: 102px;
  margin: 0 auto 0.9rem;
  display: block;
}

.info-index {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #37aee2;
  background: #f7f9fb;
  color: #169ed1;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-icon-circle {
  width: 102px;
  height: 102px;
  margin: 0;
  border-radius: 50%;
  border: 2px solid #37aee2;
  color: #0e79aa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, color 0.35s ease, background-color 0.35s ease;
}

.info-icon-circle i {
  transition: transform 0.35s ease;
}

.info-index {
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.project-info-card:hover .info-icon-circle,
.project-info-card:focus-within .info-icon-circle {
  transform: translateY(-6px) scale(1.06);
  border-color: #169ed1;
  background-color: #e9f8ff;
  color: #0a6f9b;
  box-shadow: 0 12px 20px rgba(14, 121, 170, 0.2);
}

.project-info-card:hover .info-icon-circle i,
.project-info-card:focus-within .info-icon-circle i {
  transform: scale(1.1) rotate(-6deg);
}

.project-info-card:hover .info-index,
.project-info-card:focus-within .info-index {
  transform: translate(-50%, -56%) scale(1.08);
  background-color: #169ed1;
  color: #fff;
  border-color: #169ed1;
}

.info-title {
  margin: 0 0 0.38rem;
  font-size: 1.03rem;
  font-weight: 600;
  color: #37aee2;
}

.info-value {
  margin: 0;
  color: #111;
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: 700;
}

.floor-plan-section {
  padding: 4.6rem 0 4.2rem;
  background: #fff;
}

.floor-plan-head {
  max-width: 860px;
  margin: 0 auto 2rem;
}

.floor-plan-intro {
  color: #4f5d69;
  line-height: 1.7;
  font-size: 1.02rem;
}

.floor-plan-tabs {
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.floor-plan-tabs .nav-link {
  border: 1px solid #bfe5f5;
  color: #0f7faa;
  background: #fff;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.floor-plan-tabs .nav-link.active,
.floor-plan-tabs .show > .nav-link {
  color: #fff;
  background: #169ed1;
  border-color: #169ed1;
}

.floor-plan-tab-content {
  border: 1px solid #d7e8f1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 45, 60, 0.08);
  padding: 0.95rem;
}

.floor-plan-tab-content > .tab-pane {
  padding: 0.2rem;
}

.floor-carousel {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(10, 37, 54, 0.15);
}

.floor-image {
  height: 420px;
  object-fit: cover;
}

.floor-plan-meta {
  height: 100%;
  border: 1px solid #ddebf2;
  border-radius: 14px;
  background: #f8fcff;
  padding: 1.2rem 1.1rem;
}

.floor-stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.floor-stat-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1px dashed #c8deea;
}

.floor-stat-list li:last-child {
  border-bottom: 0;
}

.floor-stat-list span {
  color: #135f7f;
  font-weight: 600;
}

.floor-stat-list span i {
  width: 18px;
}

.floor-stat-list strong {
  color: #111;
  font-weight: 700;
  text-align: right;
}

.floor-plan-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.amenities-section {
  padding: 4.6rem 0 4.2rem;
  background: #f6fbff;
}

.amenities-head {
  max-width: 860px;
  margin: 0 auto 2rem;
}

.amenities-intro {
  color: #4f5d69;
  line-height: 1.7;
  font-size: 1.02rem;
}

.amenities-panel {
  background: #fff;
  border: 1px solid #d7e8f1;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(16, 43, 58, 0.09);
  padding: 1.1rem;
}

.amenities-tabs {
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.amenities-tabs .nav-link {
  border: 1px solid #bfe5f5;
  color: #0f7faa;
  background: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  padding: 0.82rem 1.55rem;
}

.amenities-tabs .nav-link i {
  margin-right: 0.4rem;
}

.amenities-tabs .nav-link.active,
.amenities-tabs .show > .nav-link {
  color: #fff;
  background: #169ed1;
  border-color: #169ed1;
}

.amenities-tab-content {
  border: 1px solid #e1edf4;
  border-radius: 12px;
  background: #fdfefe;
  padding: 1.9rem 1rem 1.2rem;
}

.amenities-pane-head {
  padding-top: 0.65rem;
  margin-bottom: 0.95rem;
}

.amenities-pane-title {
  margin: 0;
  color: #0f7faa;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.amenity-item {
  position: relative;
  height: 100%;
  min-height: 98px;
  border: 1px solid #deecf4;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  padding: 0.8rem 0.6rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.amenity-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(22, 158, 209, 0.12), rgba(22, 158, 209, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.amenity-item i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f7fd;
  color: #169ed1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  position: relative;
  z-index: 1;
}

.amenity-item span {
  color: #154359;
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.amenity-item:hover {
  transform: translateY(-4px);
  border-color: #9fd6ee;
  box-shadow: 0 10px 20px rgba(19, 79, 106, 0.14);
}

.amenity-item:hover::before {
  opacity: 1;
}

.amenity-item:hover i {
  transform: scale(1.09) rotate(4deg);
  background: #169ed1;
  color: #fff;
}

.spec-card {
  height: 100%;
  border: 1px solid #d8e7f1;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #fafdff);
  padding: 1.1rem 1rem 0.95rem;
  box-shadow: 0 8px 18px rgba(16, 56, 78, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(16, 56, 78, 0.16);
}

.spec-title {
  margin: 0 0 0.95rem;
  color: #0f7faa;
  font-size: 1.28rem;
  font-weight: 700;
  text-align: center;
}

.spec-title i {
  margin-right: 0.45rem;
  font-size: 1.15em;
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spec-list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.58rem 0.1rem;
  border-bottom: 1px dashed #c8deea;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.spec-list li:last-child {
  border-bottom: 0;
}

.spec-list span {
  color: #1b5f7d;
  font-weight: 600;
}

.spec-list span i {
  width: 18px;
  margin-right: 0.35rem;
  color: #169ed1;
}

.spec-list strong {
  color: #1b1b1b;
  font-weight: 700;
  line-height: 1.35;
}

.spec-list li:hover {
  transform: translateX(3px);
  background: rgba(22, 158, 209, 0.05);
}

.gallery-section {
  padding: 4.6rem 0 4.2rem;
  background: #fff;
}

.gallery-head {
  max-width: 860px;
  margin: 0 auto 2rem;
}

.gallery-intro {
  color: #4f5d69;
  line-height: 1.7;
  font-size: 1.02rem;
}

.gallery-panel {
  background: #fff;
  border: 1px solid #d8e9f2;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(18, 46, 62, 0.08);
  padding: 1.1rem;
}

.gallery-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  padding-top: 0.9rem;
}

.gallery-filter-btn {
  border: 1px solid #bfe5f5;
  background: #fff;
  color: #0f7faa;
  border-radius: 999px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover,
.gallery-filter-btn:focus {
  border-color: #169ed1;
  background: #169ed1;
  color: #fff;
}

.gallery-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  cursor: pointer;
  border: 1px solid #dbeaf2;
  box-shadow: 0 8px 18px rgba(11, 45, 63, 0.12);
}

.gallery-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gallery-thumb .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 32, 0.08), rgba(8, 24, 32, 0.6));
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0.65rem 0.7rem;
}

.gallery-thumb .gallery-overlay span {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
}

.gallery-thumb .gallery-overlay i {
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(22, 158, 209, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb:hover img {
  transform: scale(1.06);
}

.gallery-thumb:hover .gallery-overlay {
  opacity: 1;
}

.gallery-video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}

.gallery-modal-content {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

.loan-providers-section {
  padding: 4.6rem 0 4.2rem;
  background: #f6fbff;
  overflow: hidden;
}

.loan-head {
  max-width: 760px;
  margin: 0 auto 1.2rem;
}

.loan-intro {
  color: #4f5d69;
  line-height: 1.65;
  font-size: 1rem;
}

.loan-slider-wrap {
  overflow: hidden;
  padding: 0.4rem 0 0.2rem;
}

.loan-slider-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: loanMarquee 34s linear infinite;
  will-change: transform;
}

.loan-slider-wrap:hover .loan-slider-track {
  animation-play-state: paused;
}

.loan-logo {
  flex: 0 0 auto;
  width: 240px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d6e8f2;
  background: #fff;
  box-shadow: 0 8px 18px rgba(13, 48, 67, 0.1);
}

.loan-logo img {
  width: 100%;
  height: 128px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}

@keyframes loanMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

.price-detail-section {
  padding: 4.6rem 0 4.2rem;
  background: #fff;
}

.price-head {
  max-width: 760px;
  margin: 0 auto 1.8rem;
}

.price-intro {
  color: #4f5d69;
  line-height: 1.65;
  font-size: 1rem;
}

.price-panel {
  border: 1px solid #d7e8f1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(16, 44, 62, 0.09);
  padding: 1.05rem;
}

.price-tabs {
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.price-tabs .nav-link {
  border: 1px solid #bfe5f5;
  color: #0f7faa;
  background: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.86rem;
  padding: 0.56rem 1rem;
}

.price-tabs .nav-link.active,
.price-tabs .show > .nav-link {
  color: #fff;
  background: #169ed1;
  border-color: #169ed1;
}

.price-tab-content {
  border: 1px solid #deecf4;
  border-radius: 12px;
  background: #fafdff;
  padding: 0.9rem;
}

.price-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #f2f8fc;
}

.price-big-image {
  width: 100%;
  height: min(58vh, 520px);
  object-fit: contain;
  display: block;
}

.downloads-section {
  padding: 4.6rem 0 4.2rem;
  background: #f6fbff;
}

.downloads-head {
  max-width: 760px;
  margin: 0 auto 1.8rem;
}

.downloads-intro {
  color: #4f5d69;
  line-height: 1.65;
  font-size: 1rem;
}

.downloads-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.download-item {
  text-decoration: none;
  color: #114a63;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  min-width: 170px;
  padding: 0.35rem 0.5rem;
}

.download-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #37aee2;
  background: #fff;
  color: #169ed1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 22px rgba(14, 69, 95, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.download-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
}

.download-item:hover .download-icon,
.download-item:focus .download-icon {
  transform: translateY(-6px) scale(1.06);
  background: #169ed1;
  color: #fff;
  box-shadow: 0 16px 30px rgba(14, 87, 120, 0.24);
}

.download-item:hover .download-label,
.download-item:focus .download-label {
  color: #169ed1;
}

.contact-section {
  padding: 4.8rem 0 4.3rem;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.contact-head {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.contact-intro {
  color: #4f5d69;
  line-height: 1.65;
  font-size: 1rem;
}

.contact-summary {
  border-radius: 14px;
  border: 1px solid #d7e8f1;
  background: #fff;
  box-shadow: 0 12px 24px rgba(12, 48, 66, 0.08);
  padding: 1.4rem 1.2rem;
}

.contact-summary h3 {
  margin: 0 0 0.8rem;
  color: #0f7faa;
  font-size: 1.35rem;
  font-weight: 700;
}

.builder-showcase {
  margin-bottom: 0.95rem;
}

.builder-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #cfe4ef;
  box-shadow: 0 8px 16px rgba(12, 48, 66, 0.1);
  display: block;
}

.builder-caption {
  margin-top: 0.45rem;
  color: #2f627a;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-summary p {
  margin: 0 0 1rem;
  color: #425766;
  line-height: 1.7;
}

.contact-readmore {
  margin-bottom: 1rem;
}

.contact-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #c7deea;
}

.contact-meta-list li:last-child {
  border-bottom: 0;
}

.contact-meta-list i {
  width: 18px;
  color: #169ed1;
  margin-top: 2px;
}

.contact-meta-list span {
  color: #17465c;
  line-height: 1.45;
}

.contact-form-card {
  border-radius: 14px;
  border: 1px solid #d7e8f1;
  background: #fff;
  box-shadow: 0 14px 30px rgba(11, 47, 65, 0.11);
  padding: 1.2rem 1.1rem;
}

.agent-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #d7ebf5;
  border-radius: 12px;
  background: #f7fcff;
  padding: 0.65rem;
  margin-bottom: 1rem;
}

.agent-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #c6e8f7;
}

.agent-info h4 {
  color: #0f7faa;
  font-size: 1.03rem;
  font-weight: 700;
}

.agent-info p {
  color: #4f5d69;
  font-size: 0.92rem;
}

.contact-form .form-label {
  color: #17465c;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form .form-control {
  border: 1px solid #cfe4ef;
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
}

.contact-form .form-control:focus {
  border-color: #7bc5e4;
  box-shadow: 0 0 0 0.2rem rgba(22, 158, 209, 0.18);
}

.contact-submit {
  padding: 0.6rem 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-section {
  padding: 4.8rem 0 4.3rem;
  background: #f6fbff;
}

.news-head {
  max-width: 760px;
  margin: 0 auto 1.8rem;
}

.news-intro {
  color: #4f5d69;
  line-height: 1.65;
  font-size: 1rem;
}

.news-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid #d7e8f1;
  box-shadow: 0 10px 24px rgba(12, 48, 66, 0.13);
}

.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 32, 0.12), rgba(8, 24, 32, 0.68));
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  color: #fff;
  font-weight: 700;
}

.news-overlay i {
  font-size: 1.1rem;
}

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

.news-card:hover .news-overlay {
  opacity: 1;
}

.news-modal-body {
  overflow: hidden;
}

.news-modal-image {
  transition: transform 0.25s ease;
  cursor: zoom-in;
}

.news-modal-image.zoomed {
  transform: scale(1.35);
  cursor: zoom-out;
}

.footer-section {
  background: #0c2633;
  color: #d2e6ef;
  padding: 3.2rem 0 1.1rem;
}

.footer-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.footer-text {
  color: #bfd7e1;
  line-height: 1.65;
  font-size: 0.93rem;
}

.footer-links,
.footer-contact,
.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li,
.footer-legal li {
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: #bfd7e1;
}

.footer-links a {
  color: #bfd7e1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #4bc0ef;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-contact i {
  width: 16px;
  color: #4bc0ef;
  margin-top: 3px;
}

.footer-mid {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1rem;
  padding: 0.9rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.6rem;
  justify-content: space-between;
  align-items: center;
}

.footer-label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-right: 0.45rem;
  color: #e6f5fb;
}

.footer-social,
.footer-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-social a,
.share-btn {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.33);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.22s ease;
}

.footer-social a:hover,
.share-btn:hover {
  border-color: #4bc0ef;
  background: #4bc0ef;
  color: #062533;
}

.footer-bottom {
  padding-top: 0.95rem;
  text-align: center;
}

.footer-bottom p {
  color: #a6c8d6;
  font-size: 0.88rem;
  line-height: 1.55;
}

.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #169ed1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(8, 58, 80, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s ease;
  z-index: 1050;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover,
.scroll-top-btn:focus {
  background: #0f86b3;
}

.whatsapp-float-btn {
  position: fixed;
  right: 22px;
  bottom: 74px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.22rem;
  box-shadow: 0 10px 24px rgba(8, 58, 80, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s ease;
  z-index: 1050;
}

.whatsapp-float-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float-btn:hover,
.whatsapp-float-btn:focus {
  background: #1fb85a;
  color: #fff;
}

.mobile-sticky-bar {
  display: none;
}

.mobile-sticky-action {
  border: 0;
  text-decoration: none;
}

/* Scroll reveal animations */
.reveal-ready {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal-ready.reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#site-footer .footer-bottom.reveal-ready,
#site-footer .footer-bottom.reveal-ready.reveal-in {
  opacity: 1 !important;
  transform: none !important;
}

.page-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.section-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.8rem, 2.3vw, 2.45rem);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 0.7rem;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #169ed1, #57c4eb);
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #169ed1;
  border: 2px solid #fff;
}

@media (max-width: 991.98px) {
  :root {
    --nav-height: 74px;
    --nav-height-scrolled: 64px;
  }

  #mainNav .navbar-collapse {
    background: #fff;
    margin-top: 0.5rem;
    border-top: 1px solid #ececec;
  }

  #mainNav .nav-link {
    padding: 0.7rem 0;
  }

  .brand-logo {
    height: 44px;
  }

  #mainNav.navbar-scrolled .brand-logo {
    height: 36px;
  }

  .hero-caption {
    left: 8%;
    right: 8%;
    bottom: 20%;
  }

  .hero-image {
    height: 62vh;
  }

  #heroCarousel .carousel-item {
    height: 62vh;
  }

  .hero-progress-wrap {
    padding-bottom: 0.35rem;
  }

  .gallery-thumb img {
    height: 160px;
  }

  .loan-logo {
    width: 200px;
  }

  .loan-logo img {
    height: 108px;
  }

  .price-big-image {
    height: min(48vh, 420px);
  }

  .download-icon {
    width: 78px;
    height: 78px;
    font-size: 1.65rem;
  }

  .contact-form-card,
  .contact-summary {
    padding: 1rem;
  }

  .news-card img {
    height: 205px;
  }

  .footer-mid {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .hero-caption {
    left: 7%;
    right: 7%;
    bottom: 16%;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    width: 42px;
    height: 42px;
  }

  .hero-meta-strip .container {
    justify-content: center !important;
  }

  .about-project-section {
    padding-top: 3.6rem;
  }

  .project-info-card {
    min-height: 152px;
  }

  .project-info-grid.project-info-grid-mobile-loop {
    display: block;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    --bs-gutter-x: 0;
  }

  .project-info-grid.project-info-grid-mobile-loop .project-info-track {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    will-change: transform;
    transition: transform 0.45s ease;
  }

  .project-info-grid.project-info-grid-mobile-loop .project-info-track > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .project-info-grid.project-info-grid-mobile-loop .project-info-card {
    min-height: 148px;
    padding-top: 0.65rem;
  }

  .amenities-grid.amenities-grid-mobile-loop,
  #specifications-pane .row.g-4.specifications-mobile-loop,
  .gallery-grid.gallery-grid-mobile-loop,
  .downloads-grid.downloads-grid-mobile-loop,
  #news .row.g-4.news-row-mobile-loop {
    display: block;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    --bs-gutter-x: 0;
  }

  .amenities-grid.amenities-grid-mobile-loop .mobile-loop-track,
  #specifications-pane .row.g-4.specifications-mobile-loop .mobile-loop-track,
  .gallery-grid.gallery-grid-mobile-loop .mobile-loop-track,
  .downloads-grid.downloads-grid-mobile-loop .mobile-loop-track,
  #news .row.g-4.news-row-mobile-loop .mobile-loop-track {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    will-change: transform;
    transition: transform 0.45s ease;
  }

  .amenities-grid.amenities-grid-mobile-loop .mobile-loop-track > [class*="col-"],
  #specifications-pane .row.g-4.specifications-mobile-loop .mobile-loop-track > [class*="col-"],
  .gallery-grid.gallery-grid-mobile-loop .mobile-loop-track > [class*="col-"],
  #news .row.g-4.news-row-mobile-loop .mobile-loop-track > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .amenities-grid.amenities-grid-mobile-loop .amenity-item,
  #specifications-pane .row.g-4.specifications-mobile-loop .spec-card,
  .gallery-grid.gallery-grid-mobile-loop .gallery-thumb,
  #news .row.g-4.news-row-mobile-loop .news-card {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .downloads-grid.downloads-grid-mobile-loop .mobile-loop-track > .download-item {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .downloads-grid.downloads-grid-mobile-loop .download-item {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .floor-image {
    height: 330px;
  }

  .amenity-item {
    min-height: 90px;
  }

  .whatsapp-float-btn {
    display: none !important;
  }

  .mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 -8px 18px rgba(2, 6, 23, 0.28);
  }

  .mobile-sticky-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: #fff;
    padding: 0.72rem 0.45rem;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: transparent;
  }

  .mobile-sticky-action i {
    font-size: 1rem;
  }

  .mobile-call-action {
    background: #0f86b3;
  }

  .mobile-whatsapp-action {
    background: #1fa855;
  }

  .mobile-enquire-action {
    background: #169ed1;
  }

  .mobile-sticky-action:hover,
  .mobile-sticky-action:focus {
    color: #fff;
    opacity: 0.95;
  }

  body {
    padding-bottom: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-info-grid.project-info-grid-mobile-loop .project-info-track,
  .amenities-grid.amenities-grid-mobile-loop .mobile-loop-track,
  #specifications-pane .row.g-4.specifications-mobile-loop .mobile-loop-track,
  .gallery-grid.gallery-grid-mobile-loop .mobile-loop-track,
  .downloads-grid.downloads-grid-mobile-loop .mobile-loop-track,
  #news .row.g-4.news-row-mobile-loop .mobile-loop-track {
    transition: none !important;
  }
}


/* Theme Customizer Overrides */
#mainNav {
  background-color: var(--theme-nav-bg) !important;
}

#mainNav .nav-link {
  color: var(--theme-text-dark) !important;
}

#mainNav .nav-link::before {
  background: var(--theme-primary) !important;
}

#mainNav .nav-link:hover,
#mainNav .nav-link:focus,
#mainNav .nav-link.active {
  color: var(--theme-secondary) !important;
}

.hero-title span,
.section-title span,
.price-value {
  color: var(--theme-primary) !important;
}

.hero-meta-strip,
.hero-progress-fill,
.btn-info,
.price-tab-btn.active,
.download-icon,
.scroll-top-btn {
  background: var(--theme-primary) !important;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  background: var(--theme-primary) !important;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-prev:focus,
#heroCarousel .carousel-control-next:hover,
#heroCarousel .carousel-control-next:focus {
  background: var(--theme-secondary) !important;
}

.btn-info,
.price-tab-btn.active,
.download-icon,
.scroll-top-btn {
  border-color: var(--theme-primary) !important;
  color: var(--theme-text-light) !important;
}

.btn-info:hover,
.btn-info:focus,
.price-tab-btn:hover {
  background: var(--theme-secondary) !important;
  border-color: var(--theme-secondary) !important;
}

.footer-section {
  background: var(--theme-footer-bg) !important;
  color: var(--theme-text-light) !important;
}

.footer-contact i,
.footer-contact li i,
.footer-contact li svg {
  color: var(--theme-icon-color) !important;
}

.footer-title,
.footer-social a,
.share-btn,
.hero-btn,
.download-btn {
  color: var(--theme-text-light) !important;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--theme-text-light) !important;
}

.footer-bottom a,
.footer-bottom a:hover,
.footer-bottom a:focus {
  text-decoration: none !important;
}

.footer-bottom p {
  opacity: 0.9;
}

.hero-meta-strip .social-link {
  color: var(--theme-text-light) !important;
  border-color: var(--theme-text-light) !important;
}

.hero-meta-strip .social-link:hover,
.hero-meta-strip .social-link:focus {
  color: var(--theme-primary) !important;
  background: var(--theme-text-light) !important;
  border-color: var(--theme-text-light) !important;
}

.section-title {
  color: var(--theme-heading-color) !important;
}

.section-title::before {
  background: linear-gradient(90deg, var(--theme-heading-underline-start), var(--theme-heading-underline-end)) !important;
}

.section-title::after {
  background: var(--theme-heading-underline-start) !important;
}

.about-project-intro,
.floor-plan-intro,
.amenities-intro,
.downloads-intro,
.contact-intro,
.contact-summary p,
.contact-meta-list span,
.download-item,
.download-label,
.floor-stat-list strong,
.spec-list strong,
.info-value,
.amenity-item span,
.spec-list span {
  color: var(--theme-text-dark) !important;
}

.info-title,
.floor-stat-list span,
.amenities-pane-title,
.spec-title,
.spec-list span i {
  color: var(--theme-primary) !important;
}

.info-index,
.info-icon-circle,
.amenity-item i,
.spec-list span i,
.contact-meta-list i,
.download-icon {
  color: var(--theme-icon-color) !important;
}

.info-index,
.info-icon-circle,
.download-icon {
  border-color: var(--theme-icon-border) !important;
}

.info-icon-circle,
.amenity-item i,
.download-icon {
  background: var(--theme-icon-bg) !important;
}

.project-info-card:hover .info-icon-circle,
.project-info-card:focus-within .info-icon-circle,
.project-info-card:hover .info-index,
.project-info-card:focus-within .info-index,
.amenity-item:hover i,
.download-item:hover .download-icon,
.download-item:focus .download-icon {
  background: var(--theme-tab-active-bg) !important;
  border-color: var(--theme-tab-active-bg) !important;
  color: var(--theme-tab-active-text) !important;
}

.floor-plan-tabs .nav-link,
.amenities-tabs .nav-link,
.gallery-filter-btn,
.price-tabs .nav-link {
  background: var(--theme-tab-bg) !important;
  color: var(--theme-tab-text) !important;
  border-color: var(--theme-tab-border) !important;
}

.floor-plan-tabs .nav-link:hover,
.amenities-tabs .nav-link:hover,
.gallery-filter-btn:hover,
.price-tabs .nav-link:hover {
  background: var(--theme-tab-hover-bg) !important;
  color: var(--theme-tab-hover-text) !important;
  border-color: var(--theme-tab-hover-bg) !important;
}

.floor-plan-tabs .nav-link.active,
.floor-plan-tabs .show > .nav-link,
.amenities-tabs .nav-link.active,
.amenities-tabs .show > .nav-link,
.gallery-filter-btn.active,
.price-tabs .nav-link.active,
.price-tabs .show > .nav-link {
  background: var(--theme-tab-active-bg) !important;
  color: var(--theme-tab-active-text) !important;
  border-color: var(--theme-tab-active-bg) !important;
}

#floor-plan .floor-plan-actions .btn-outline-info {
  color: var(--theme-primary) !important;
  border-color: var(--theme-primary) !important;
  background: transparent !important;
}

#floor-plan .floor-plan-actions .btn-outline-info:hover,
#floor-plan .floor-plan-actions .btn-outline-info:focus,
#floor-plan .floor-plan-actions .btn-outline-info:active {
  color: var(--theme-tab-active-text) !important;
  background: var(--theme-primary) !important;
  border-color: var(--theme-primary) !important;
}

.amenity-item:hover {
  border-color: var(--theme-tab-active-bg) !important;
  box-shadow: 0 10px 20px rgba(19, 79, 106, 0.14) !important;
}

.amenity-item::before {
  background: linear-gradient(140deg, var(--theme-icon-bg), transparent) !important;
}

.gallery-thumb .gallery-overlay i {
  background: var(--theme-primary) !important;
  color: var(--theme-text-light) !important;
}

.gallery-thumb:hover .gallery-overlay i {
  background: var(--theme-secondary) !important;
}

.contact-summary h3,
.builder-caption,
.agent-info h4 {
  color: var(--theme-primary) !important;
}

.agent-strip {
  border-color: var(--theme-tab-border) !important;
  background: var(--theme-tab-bg) !important;
}

.agent-thumb {
  border-color: var(--theme-icon-border) !important;
}

.footer-social a:hover,
.share-btn:hover {
  border-color: var(--theme-primary) !important;
  background: var(--theme-primary) !important;
  color: var(--theme-text-light) !important;
}
