:root {
  --bg-main: #f8fafc;
  --bg-surface: #f1f5f9;
  --bg-card: #ffffff;
  --bg-accent: #f0f7ff;
  --color-primary: #162a56;
  --color-primary-hover: #0f1d3d;
  --color-primary-light: #264796;
  --color-gold: #0097db;
  --color-gold-dark: #0284c7;
  --color-gold-light: #42c0ff;
  --color-gold-border: rgba(0, 151, 219, 0.3);
  --border-light: #e2e8f0;
  --border-card: #e2e8f0;
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-label: #94a3b8;
  --font-serif: "Outfit", "Plus Jakarta Sans", sans-serif;
  --font-sans:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-subtle: 0 4px 20px rgba(22, 42, 86, 0.05);
  --shadow-card: 0 10px 30px rgba(22, 42, 86, 0.08);
  --shadow-hover: 0 15px 35px rgba(22, 42, 86, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.project-landing-body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.65;
  padding-top: 72px;
  position: relative;
  overflow-x: hidden;
}

body.project-landing-body h1,
body.project-landing-body h2,
body.project-landing-body h3,
body.project-landing-body h4,
body.project-landing-body h5,
body.project-landing-body h6 {
  font-family: var(--font-serif);
  color: var(--text-heading);
  letter-spacing: -0.3px;
  font-weight: 700;
}

.eyebrow-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 45px;
}

.section-title-serif {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-heading);
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  font-weight: 800;
}

.section-title-serif::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #0097db, #264796);
  border-radius: 2px;
}

.section-subtitle-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 10px;
}

.btn-theme-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #162a56 0%, #264796 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(22, 42, 86, 0.2);
}

.btn-theme-dark:hover {
  background: linear-gradient(135deg, #264796 0%, #0097db 100%);
  border-color: #0097db;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 151, 219, 0.3);
}

.btn-theme-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-gold);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-theme-outline:hover {
  background: var(--color-gold);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 151, 219, 0.25);
}

.header-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(22, 42, 86, 0.05);
}

.header-nav-wrap.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-nav-wrap .navbar {
  padding: 12px 0;
}

.header-nav-wrap .brand-logo-img {
  height: 48px;
  width: 200px;
  object-fit: contain;
  display: block;
}

.header-nav-wrap .navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-heading);
  padding: 8px 13px !important;
  position: relative;
  transition: var(--transition);
}

.header-nav-wrap .navbar-nav .nav-link:hover,
.header-nav-wrap .navbar-nav .nav-link.active {
  color: var(--color-gold);
}

.header-nav-wrap .navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 13px;
  right: 13px;
  height: 2.5px;
  background: var(--color-gold);
  border-radius: 2px;
}

.nav-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #162a56 0%, #264796 100%);
  color: #ffffff !important;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(22, 42, 86, 0.2);
}

.nav-phone-cta:hover {
  background: linear-gradient(135deg, #264796 0%, #0097db 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 151, 219, 0.35);
}

.phone-svg-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0097db;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: phoneIconFlash 1.8s infinite ease-in-out;
}

.phone-svg-icon {
  width: 13px;
  height: 13px;
}

@keyframes phoneIconFlash {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 151, 219, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(0, 151, 219, 0);
  }
}

.hero-banner-container {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 35px;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-bg-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 78%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 38%,
      rgba(255, 255, 255, 0.94) 52%,
      rgba(255, 255, 255, 0.4) 72%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 40%,
      rgba(255, 255, 255, 0.85) 100%
    );
  z-index: 2;
}

.hero-shadow-leaf {
  position: absolute;
  top: -30px;
  left: -20px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(0, 151, 219, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 3;
}

.hero-mob-visual-card {
  display: none;
  width: calc(100% + 32px);
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  margin-bottom: 20px;
  margin-left: -16px;
  margin-right: -16px;
}

.hero-mob-visual-card img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
}

.hero-inner-content {
  position: relative;
  z-index: 5;
  max-width: 620px;
  padding: 30px 0 20px;
}

.hero-eyebrow-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.hero-display-heading {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-heading);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-gold-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0097db, #264796);
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-points-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.hero-points-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-points-list li:last-child {
  margin-bottom: 0;
}

.hero-points-list li i {
  color: var(--color-gold);
  font-size: 16px;
  flex-shrink: 0;
}

.highlight-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0097db 0%, #264796 100%);
  border: 1px solid rgba(0, 151, 219, 0.4);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(0, 151, 219, 0.3);
  animation: highlightPulse 3s ease-in-out infinite;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 26px;
}

@keyframes highlightPulse {
  0%,
  100% {
    box-shadow:
      0 4px 14px rgba(0, 151, 219, 0.25),
      0 0 0 0 rgba(0, 151, 219, 0);
  }
  50% {
    box-shadow:
      0 8px 24px rgba(0, 151, 219, 0.4),
      0 0 20px rgba(0, 151, 219, 0.25);
  }
}

.highlight-badge:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #264796 0%, #0097db 100%);
}

.highlight-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  animation: highlightDot 2s ease-in-out infinite;
}

@keyframes highlightDot {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #162a56 0%, #264796 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(22, 42, 86, 0.25);
  text-decoration: none;
}

.btn-hero-enquire:hover {
  background: linear-gradient(135deg, #264796 0%, #0097db 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 151, 219, 0.35);
}

.btn-hero-brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-gold);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-subtle);
}

.btn-hero-brochure:hover {
  background: var(--color-gold);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 151, 219, 0.25);
}

.hero-stats-dock {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: 30px;
}

.stats-card-ribbon {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  box-shadow: 0 10px 30px rgba(22, 42, 86, 0.08);
}

.stats-grid-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.stat-cell-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border-right: 1px solid var(--border-light);
}

.stat-cell-block:last-child {
  border-right: none;
}

.stat-cell-icon {
  font-size: 26px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.stat-cell-num {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.15;
}

.stat-cell-lbl {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-label);
  letter-spacing: 0.8px;
  font-weight: 600;
}

.overview-layout-section {
  padding: 85px 0;
  background: #ffffff;
  position: relative;
  border-top: 1px solid var(--border-light);
}

.overview-content-block {
  padding-right: 12px;
}

.overview-heading {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.25;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.overview-description {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.overview-description:last-of-type {
  margin-bottom: 0;
}

.overview-actions-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.overview-visual-block {
  position: relative;
}

.overview-main-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
}

.overview-main-img-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.overview-main-img-card:hover img {
  transform: scale(1.03);
}

.overview-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(22, 42, 86, 0.12);
}

.overview-badge-float i {
  color: var(--color-gold);
  font-size: 24px;
}

.overview-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
}

.overview-badge-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.highlights-layout-section {
  padding: 85px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-light);
}

.highlights-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.highlight-clean-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-clean-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0097db, #264796);
  transition: width 0.3s ease;
}

.highlight-clean-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold-border);
  box-shadow: var(--shadow-card);
}

.highlight-clean-card:hover::before {
  width: 100%;
}

.highlight-card-icon {
  font-size: 24px;
  color: var(--color-gold);
  margin-bottom: 14px;
  display: inline-block;
}

.highlight-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.35;
}

.highlight-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.price-layout-section {
  padding: 85px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.price-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.price-data-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-family: var(--font-sans);
}

.price-data-table thead tr {
  background: linear-gradient(135deg, #162a56 0%, #264796 100%);
  color: #ffffff;
}

.price-data-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
}

.price-data-table thead th:last-child {
  text-align: center;
}

.price-data-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.price-data-table tbody tr:last-child {
  border-bottom: none;
}

.price-data-table tbody tr:hover {
  background: #f8fafc;
}

.price-data-table tbody tr.price-row-highlight {
  background: linear-gradient(
    90deg,
    rgba(0, 151, 219, 0.04) 0%,
    rgba(38, 71, 150, 0.04) 100%
  );
  border-left: 3px solid #0097db;
}

.price-data-table tbody tr.price-row-highlight:hover {
  background: linear-gradient(
    90deg,
    rgba(0, 151, 219, 0.08) 0%,
    rgba(38, 71, 150, 0.08) 100%
  );
}

.price-data-table tbody td {
  padding: 18px 20px;
  font-size: 14px;
  color: var(--text-body);
  vertical-align: middle;
}

.price-unit-name {
  font-weight: 700;
  color: var(--text-heading);
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0097db, #264796);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}

.price-size-cell {
  color: var(--text-muted);
  font-size: 13.5px;
  white-space: nowrap;
}

.price-amount-cell {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.price-plan-cell {
  font-size: 12.5px;
  color: var(--text-muted);
  white-space: nowrap;
}

.price-table-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.price-table-btn:hover {
  background: var(--color-gold);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 151, 219, 0.3);
}

.price-data-table tbody td:last-child {
  text-align: center;
}

.price-table-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.price-disclaimer {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
  max-width: 600px;
}

.price-disclaimer i {
  color: var(--color-gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.amenities-layout-section {
  padding: 85px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-light);
}

.amenities-icon-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.amenity-clean-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 10px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.amenity-clean-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 8px 20px rgba(0, 151, 219, 0.12);
}

.amenity-icon-cell {
  font-size: 24px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.amenity-label-cell {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-heading);
  line-height: 1.3;
}

.floorplans-layout-section {
  padding: 85px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.floorplan-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.floorplan-plan-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(22, 42, 86, 0.05);
}

.floorplan-plan-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-gold-border);
  transform: translateY(-3px);
}

.master-plan-single-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(22, 42, 86, 0.08);
}

.master-plan-single-card .fp-image-wrap {
  height: 380px;
}

@media (max-width: 768px) {
  .master-plan-single-card .fp-image-wrap {
    height: 230px;
  }
}

.fp-image-wrap {
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
  height: 260px;
  display: block;
}

.fp-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.fp-image-clear img {
  filter: none !important;
}

.floorplan-plan-card:hover .fp-image-clear img {
  filter: none !important;
  transform: scale(1.03);
}

.fp-image-blurred img {
  filter: blur(6px) !important;
  transform: scale(1.04);
}

.floorplan-plan-card:hover .fp-image-blurred img {
  filter: blur(6px) !important;
  transform: scale(1.04);
}

.fp-view-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(22, 42, 86, 0.25);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    background 0.3s ease;
  cursor: pointer;
}

.fp-view-overlay i {
  font-size: 28px;
}

.floorplan-plan-card:hover .fp-view-overlay {
  opacity: 1;
  background: rgba(22, 42, 86, 0.45);
}

.fp-blur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(22, 42, 86, 0.45);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.fp-blur-overlay i {
  font-size: 28px;
  opacity: 0.9;
}

.floorplan-plan-card:hover .fp-blur-overlay {
  background: rgba(22, 42, 86, 0.35);
}

.fp-card-body {
  padding: 24px 26px 26px;
}

.fp-plan-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #162a56, #264796);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.fp-plan-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.fp-plan-area {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.fp-plan-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.fp-unlock-banner {
  margin-top: 32px;
  background: linear-gradient(135deg, #162a56 0%, #264796 100%);
  border-radius: var(--radius-md);
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fp-unlock-banner > i {
  font-size: 28px;
  color: #0097db;
  flex-shrink: 0;
}

.fp-unlock-banner > div {
  flex: 1;
  min-width: 200px;
}

.fp-unlock-banner strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.fp-unlock-banner span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.4;
}

.floorplan-grid-four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.floorplan-preview-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
}

.floorplan-preview-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-card);
  background: #ffffff;
}

.floorplan-card-info h3 {
  font-size: 19px;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--text-heading);
}

.floorplan-card-info .carpet-area {
  font-size: 13.5px;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.floorplan-card-info .spec-list {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.floorplan-img-thumb {
  width: 170px;
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.floorplan-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transition: var(--transition);
}

.floorplan-img-thumb:hover img {
  filter: blur(0.5px);
  transform: scale(1.05);
}

.gallery-layout-section {
  padding: 85px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-light);
}

.gallery-five-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 35px;
}

.gallery-thumbnail-card {
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  position: relative;
  background: #ffffff;
  cursor: pointer;
  display: block;
}

.gallery-thumbnail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-thumbnail-card:hover img {
  transform: scale(1.08);
}

.gallery-zoom-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 42, 86, 0.4);
  color: #ffffff;
  font-size: 26px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-thumbnail-card:hover .gallery-zoom-overlay {
  opacity: 1;
}

.project-review-section {
  padding: 85px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.project-review-section .review-heading-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.project-review-section .review-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.project-review-section .review-main-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--text-heading);
  font-weight: 800;
}

.project-review-section .review-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.review-rating-panel {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  padding: 30px;
  height: 100%;
  border-radius: var(--radius-md);
}

.overall-rating-box {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-light);
}

.overall-rating-box .rating-number {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
}

.overall-rating-box .rating-stars {
  margin: 10px 0 5px;
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 16px;
}

.overall-rating-box .rating-text {
  font-size: 13px;
  color: var(--text-muted);
}

.rating-item {
  margin-bottom: 16px;
}

.rating-item:last-child {
  margin-bottom: 0;
}

.rating-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 6px;
}

.rating-item-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-heading);
}

.rating-item-score {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
}

.rating-progress {
  height: 6px;
  background: #e2e8f0;
  overflow: hidden;
  border-radius: 10px;
}

.rating-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0097db, #264796);
  border-radius: 10px;
}

.review-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-person-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.review-person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(22, 42, 86, 0.08);
  border-color: var(--color-gold-border);
}

.review-person-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 14px;
}

.review-person-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.review-person-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--text-heading);
}

.review-person-type {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.review-card-rating {
  font-size: 12px;
  color: #f59e0b;
  white-space: nowrap;
  font-weight: 700;
}

.review-person-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}

.location-layout-section {
  padding: 85px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-light);
  position: relative;
}

.location-bullet-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.location-bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
  padding: 8px 0;
}

.location-bullet-list li i {
  color: var(--color-gold);
  font-size: 15px;
}

.location-map-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 380px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.location-map-card iframe,
.location-map-card img {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-badge-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  z-index: 5;
}

.location-badge-float i {
  color: var(--color-gold);
  font-size: 22px;
}

.location-badge-float .prime-txt {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
}

.location-badge-float .city-txt {
  font-size: 11px;
  color: var(--text-muted);
}

.sector-about-layout-section {
  padding: 85px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.sector-about-narrative-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-subtle);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sector-about-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.3;
  margin-bottom: 18px;
}

.sector-about-para {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.sector-about-cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.sector-features-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  justify-content: center;
}

.sector-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.sector-feature-card:hover {
  border-color: var(--color-gold-border);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.sector-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-accent);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}

.sector-feature-card:hover .sector-feature-icon {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.sector-feature-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
  line-height: 1.3;
}

.sector-feature-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.developer-layout-section {
  padding: 85px 0;
  background: var(--bg-main);
  border-top: 1px solid var(--border-light);
}

.developer-story-block {
  padding-right: 20px;
}

.developer-brand-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.developer-story-para {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.8;
}

.developer-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dev-stat-clean-cell {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 14px;
  text-align: center;
  transition: var(--transition);
}

.dev-stat-clean-cell:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.dev-stat-clean-cell i {
  font-size: 24px;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.dev-stat-clean-cell .num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.dev-stat-clean-cell .lbl {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  font-weight: 600;
}

.bottom-touch-section {
  padding: 85px 0 65px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.touch-info-col {
  padding-right: 30px;
}

.touch-main-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 16px;
  line-height: 1.25;
}

.touch-main-para {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.touch-perks-list {
  list-style: none;
  padding: 0;
}

.touch-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.touch-perk-item i {
  font-size: 20px;
  color: var(--color-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.touch-perk-item .perk-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.touch-perk-item .perk-desc {
  font-size: 12.5px;
  color: var(--text-muted);
}

.luxury-contact-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: 0 15px 40px rgba(22, 42, 86, 0.08);
}

.contact-card-header {
  margin-bottom: 24px;
}

.contact-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.contact-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group-item {
  position: relative;
}

.form-label-text {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.clean-input-control {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-heading);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13.5px;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition);
}

.clean-input-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(0, 151, 219, 0.15);
}

.clean-input-control.is-invalid {
  border-color: #ef4444 !important;
}

.input-error-msg {
  color: #ef4444;
  font-size: 11px;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

.input-error-msg.active {
  display: block;
}

.phone-with-country-group {
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.phone-with-country-group .clean-input-control,
.phone-with-country-group .modal-input-field,
.phone-with-country-group input {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
}

.country-selector-wrap {
  position: relative;
  flex-shrink: 0;
}

.country-active-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
}

.country-active-box img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

.country-options-menu {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  width: 210px;
  max-height: 200px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  z-index: 1100;
  list-style: none;
  padding: 4px 0;
  display: none;
}

.country-options-menu.show {
  display: block;
}

.country-options-menu li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.country-options-menu li:hover {
  background: var(--bg-surface);
  color: var(--color-gold);
}

.country-options-menu li img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

.footer-widget-title,
body.project-landing-body .footer .footer-widget-title,
body.project-landing-body .footer-widget-title {
  color: #fbbf24 !important;
}

.footer-simple-bottom {
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  background: #ffffff;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-simple-bottom a {
  color: var(--text-body);
  text-decoration: none;
}

.footer-simple-bottom a:hover {
  color: var(--color-gold);
}

.fixed-right-enquire-btn {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  z-index: 998;
  background: linear-gradient(135deg, #162a56 0%, #264796 100%);
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--color-gold);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  box-shadow: -4px 0 15px rgba(22, 42, 86, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.fixed-right-enquire-btn:hover {
  background: linear-gradient(135deg, #264796 0%, #0097db 100%);
  color: #ffffff;
  padding-bottom: 24px;
}

.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp-btn::before,
.floating-whatsapp-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: whatsappPulseRing 2s cubic-bezier(0.25, 0, 0, 1) infinite;
}

.floating-whatsapp-btn::after {
  animation-delay: 0.6s;
}

@keyframes whatsappPulseRing {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  100% {
    width: 170%;
    height: 170%;
    opacity: 0;
  }
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #ffffff !important;
}

.mobile-quick-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-action-item.action-call {
  color: var(--color-primary);
  border-right: 1px solid var(--border-light);
}

.mobile-action-item.action-enquire {
  background: linear-gradient(135deg, #162a56 0%, #264796 100%);
  color: #ffffff !important;
}

.mobile-action-item.action-whatsapp {
  color: #25d366;
  border-left: 1px solid var(--border-light);
}

.mobile-action-item i {
  font-size: 17px;
}

.modal-custom-dialog {
  max-width: 440px;
  margin: 1.75rem auto;
  width: 100%;
}

.modal-custom-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px 28px 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: visible;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  opacity: 0.6;
  transition: var(--transition);
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.modal-close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-custom-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-logo-img {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
}

.modal-custom-header h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.modal-custom-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.modal-input-field {
  width: 100%;
  padding: 13px 18px;
  font-size: 14px;
  color: var(--text-heading);
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.modal-input-field:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(0, 151, 219, 0.15);
}

.modal-phone-group .modal-country-box {
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 13px 12px;
}

.modal-consent-row {
  margin: 14px 0 10px;
}

.modal-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  cursor: pointer;
  margin: 0;
}

.modal-consent-checkbox {
  margin-top: 2px;
  accent-color: var(--color-gold);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.modal-consent-label a {
  color: var(--color-gold);
  text-decoration: underline;
}

.modal-submit-pill-btn {
  background: linear-gradient(135deg, #162a56 0%, #264796 100%);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 48px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 14px rgba(22, 42, 86, 0.25);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.modal-submit-pill-btn:hover {
  background: linear-gradient(135deg, #264796 0%, #0097db 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 151, 219, 0.35);
}

@media (max-width: 1199px) {
  .hero-bg-visual {
    width: 60%;
  }

  .hero-display-heading {
    font-size: 44px;
  }

  .stat-cell-block {
    padding: 0 12px;
  }

  .stat-cell-num {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  body.project-landing-body {
    padding-bottom: 56px;
  }

  .fixed-right-enquire-btn {
    display: none !important;
  }

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

  .mobile-quick-action-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .header-nav-wrap .navbar-collapse {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .header-nav-wrap .navbar-nav .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .header-nav-wrap .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .header-nav-wrap .navbar-nav .nav-link.active::after {
    display: none;
  }

  .hero-banner-container {
    padding-top: 40px;
    padding-bottom: 25px;
    min-height: auto;
    display: block;
  }

  .hero-bg-visual,
  .hero-gradient-overlay,
  .hero-shadow-leaf {
    display: none !important;
  }

  .hero-mob-visual-card {
    display: block;
    margin-bottom: 18px;
  }

  .hero-inner-content {
    max-width: 100%;
    padding: 0 0 20px;
    text-align: left;
  }

  .hero-display-heading {
    font-size: 34px;
  }

  .stats-card-ribbon {
    margin-top: 10px;
  }

  .stats-grid-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }

  .highlights-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .floorplan-grid-four,
  .floorplan-dual-grid {
    grid-template-columns: 1fr;
  }

  .gallery-five-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .developer-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .touch-info-col {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .overview-content-block {
    padding-right: 0;
    margin-bottom: 24px;
  }

  .overview-heading {
    font-size: 26px;
  }

  .overview-main-img-card img {
    height: 280px;
  }

  .sector-about-narrative-card {
    padding: 28px 22px;
    margin-bottom: 16px;
  }

  .sector-about-title {
    font-size: 22px;
  }

  .review-cards-grid {
    grid-template-columns: 1fr;
  }

  .review-rating-panel {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-banner-container {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .hero-banner-container .container {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-mob-visual-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .hero-inner-content {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 20px;
  }

  .hero-mob-visual-card img {
    height: 220px;
  }

  .hero-display-heading {
    font-size: 26px;
  }

  .highlight-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 13px;
  }

  .hero-actions-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .btn-hero-enquire,
  .btn-hero-brochure {
    width: 100%;
    justify-content: center;
  }

  .stats-card-ribbon {
    padding: 18px 16px;
  }

  .stats-grid-strip {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .stat-cell-block {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 0 0 10px 0;
  }

  .stat-cell-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .highlights-cards-row {
    grid-template-columns: 1fr;
  }

  .amenities-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-five-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .developer-stats-grid {
    grid-template-columns: 1fr;
  }

  .floorplan-preview-card {
    flex-direction: column;
    text-align: center;
  }

  .luxury-contact-card {
    padding: 22px 16px;
  }

  .modal-custom-dialog {
    margin: 16px auto;
    max-width: calc(100% - 24px);
  }

  .modal-custom-card {
    padding: 22px 16px 18px;
  }

  .overview-actions-wrap,
  .sector-about-cta-wrap {
    flex-direction: column;
    width: 100%;
  }

  .overview-actions-wrap .btn-theme-dark,
  .overview-actions-wrap .btn-theme-outline,
  .sector-about-cta-wrap .btn-theme-dark,
  .sector-about-cta-wrap .btn-theme-outline {
    width: 100%;
  }

  .floorplan-dual-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fp-image-wrap {
    height: 200px;
  }

  .fp-unlock-banner {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px;
    gap: 14px;
  }

  .fp-unlock-banner .btn-theme-dark {
    width: 100%;
    justify-content: center;
  }

  .price-table-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-table-footer .btn-theme-dark {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .floorplan-dual-grid {
    grid-template-columns: 1fr;
  }

  .price-plan-cell {
    display: none;
  }
}
