/* Saya Carnival – Event Landing */

:root {
  --primary: #1a0a10;
  --primary-light: #2b1218;
  --carnival-red: #9b1c2e;
  --carnival-red-dark: #6e1220;
  --carnival-red-light: #c4283d;
  --gold: #d4a017;
  --gold-light: #f0c14b;
  --gold-dark: #b8860b;
  --text: #2a2426;
  --text-light: #5c5356;
  --text-muted: #8a8084;
  --white: #fff;
  --bg-light: #faf6f2;
  --bg-section: #f3ebe6;
  --border: #eadfd6;
  --shadow: 0 8px 30px rgba(26, 10, 16, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 10, 16, 0.16);
  --font: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.event-site {
  background:
    radial-gradient(ellipse at top, rgba(155, 28, 46, 0.07), transparent 42%),
    var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section headings – monarch pattern */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--carnival-red);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-head p {
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
}

@media (min-width: 768px) {
  .section-head h2 { font-size: 42px; }
}

.section { padding: 70px 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--primary); color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-gold,
.btn-carnival {
  background: linear-gradient(135deg, var(--carnival-red), var(--carnival-red-dark));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(155, 28, 46, 0.28);
}

.btn-gold:hover,
.btn-carnival:hover {
  background: linear-gradient(135deg, var(--carnival-red-light), var(--carnival-red));
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(155, 28, 46, 0.35);
  color: var(--white);
}

.btn-outline-gold,
.btn-carnival-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover,
.btn-carnival-outline:hover {
  background: var(--gold);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover { background: var(--gold); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* Event marquee */
.event-marquee {
  background: linear-gradient(90deg, var(--carnival-red-dark), var(--carnival-red), var(--carnival-red-dark));
  color: var(--gold-light);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  padding: 10px 0;
}

.event-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
}

.event-marquee-track span { flex-shrink: 0; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Top bar */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.25);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a { color: var(--gold-light); font-weight: 500; }
.topbar a:hover { color: var(--gold); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(26, 10, 16, 0.08);
  border-bottom: 2px solid rgba(155, 28, 46, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo img, .logo-img { height: 44px; width: auto; display: block; }

.logo-event {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-event .logo-img { height: 40px; }

.logo-event-text {
  display: none;
  flex-direction: column;
  line-height: 1.15;
}

@media (min-width: 480px) {
  .logo-event-text { display: flex; }
}

.logo-event-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--carnival-red);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.logo-event-year {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 2px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.logo-text .sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
}

.nav-desktop {
  display: none;
  gap: 28px;
}

@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-desktop a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--carnival-red);
  transition: width 0.3s;
}

.nav-desktop a:hover { color: var(--carnival-red); }
.nav-desktop a:hover::after { width: 100%; }

.header-cta {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) { .header-cta { display: flex; } }

.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.header-phone span { color: var(--gold); }

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  padding: 4px;
}

@media (min-width: 1024px) { .menu-toggle { display: none; } }

.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 560px;
  height: clamp(560px, 78vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1830;
}

/* Creative event banners — PC + mobile artworks */
.hero-banner--creative {
  min-height: 0;
  height: auto;
  display: block;
  overflow: visible;
  background: #1a0a0e;
}

.hero-creative {
  position: relative;
  width: 100%;
  line-height: 0;
  background: #1a0a0e;
}

.hero-creative-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.hero-register-bar {
  background:
    linear-gradient(135deg, rgba(26, 10, 16, 0.92), rgba(110, 18, 32, 0.95)),
    radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.18), transparent 45%);
  padding: 32px 0;
  border-top: 3px solid var(--gold);
  position: relative;
}

.hero-register-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(255, 255, 255, 0.02) 12px,
    rgba(255, 255, 255, 0.02) 24px
  );
  pointer-events: none;
}

.hero-register-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
}

@media (min-width: 900px) {
  .hero-register-inner {
    grid-template-columns: minmax(200px, 260px) 1fr;
    gap: 28px;
    align-items: end;
  }
}

.hero-register-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.hero-register-copy h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-register-copy p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.hero-register-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: end;
}

@media (min-width: 640px) {
  .hero-register-form {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
}

@media (min-width: 1100px) {
  .hero-register-form {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
}

.hero-register-bar .form-group {
  margin-bottom: 0;
}

.hero-register-bar .form-group label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.hero-register-bar .form-control {
  background: var(--white);
  border-radius: 8px;
  border: none;
  min-height: 44px;
}

.hero-register-bar .btn-gold,
.hero-register-bar .btn-carnival {
  min-height: 44px;
  white-space: nowrap;
  padding: 12px 22px;
}

.hero-register-bar .success-msg {
  grid-column: 1 / -1;
  color: #7dffa0;
  font-weight: 600;
  text-align: center;
}

.hero-bgs {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 8s ease-out;
  will-change: opacity, transform;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 18, 36, 0.92) 0%, rgba(12, 31, 63, 0.78) 38%, rgba(12, 31, 63, 0.45) 62%, rgba(12, 31, 63, 0.25) 100%),
    linear-gradient(to top, rgba(8, 18, 36, 0.7) 0%, transparent 45%);
  pointer-events: none;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.22) 0%, transparent 70%);
  top: -80px;
  right: 18%;
  z-index: 2;
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.45; transform: translateY(0); }
  to { opacity: 0.85; transform: translateY(24px); }
}

.hero-body {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 36px 20px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-body {
    grid-template-columns: 1.15fr 360px;
    gap: 40px;
    padding: 40px 20px;
  }
}

.hero-content {
  animation: heroRise 0.8s ease both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-head {
  margin-bottom: 22px;
}

.hero-event-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--primary);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
  animation: heroRise 0.7s ease 0.05s both;
}

.hero-event-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  animation: heroRise 0.75s ease 0.12s both;
}

.hero-event-title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) {
  .hero-event-title { font-size: 58px; }
}

.hero-event-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  letter-spacing: 0.2px;
  max-width: 480px;
  line-height: 1.55;
  animation: heroRise 0.8s ease 0.2s both;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  animation: heroRise 0.85s ease 0.28s both;
}

.hero-meta-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 120px;
}

.hero-meta-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.hero-meta-item strong {
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
}

.hero-rera-line {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
  animation: heroRise 0.9s ease 0.35s both;
}

.hero-content .hero-actions {
  margin-top: 0;
  animation: heroRise 0.85s ease 0.32s both;
}

.hero-project-card {
  max-width: 540px;
  animation: heroRise 0.85s ease 0.28s both;
}

.hero-project-tabs {
  position: relative;
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  padding: 5px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-proj-tab {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 11px 14px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  border-radius: 10px;
  transition: color 0.25s, background 0.25s;
}

.hero-proj-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero-proj-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.hero-tab-progress {
  position: absolute;
  left: 5px;
  bottom: 0;
  height: 2px;
  width: calc(50% - 5px);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform-origin: left center;
  transform: scaleX(0);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
  transition: left 0.3s ease;
}

.hero-tab-progress.is-running {
  animation: heroProgress 7s linear forwards;
}

@keyframes heroProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-project-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: none;
  padding: 22px 24px 20px;
  border-radius: 0 0 14px 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: opacity 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
}

.hero-project-box--solo {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.hero-project-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
}

.hero-project-box.fade {
  opacity: 0.35;
  transform: translateY(6px);
}

.hero-project-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-project-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.hero-project-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

@media (min-width: 768px) {
  .hero-project-name { font-size: 32px; }
}

.hero-project-loc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  padding-left: 18px;
  position: relative;
}

.hero-project-loc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-sizing: border-box;
}

.hero-project-loc::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 6px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.hero-stat {
  text-align: center;
  padding: 14px 8px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.hero-project-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-price-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.hero-project-details {
  text-align: right;
}

.hero-badge-status {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 7px 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  border-radius: 999px;
  white-space: nowrap;
}

.hero-badge-status.ready {
  background: linear-gradient(135deg, #2ecc71, #1e9e54);
  color: var(--white);
}

.hero-possession {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 4px;
}

.hero-rera {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  flex: 1;
  min-width: 140px;
  padding: 13px 20px;
  font-size: 12px;
  border-radius: 8px;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  backdrop-filter: blur(6px);
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.hero-form-box {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  width: 100%;
  overflow: hidden;
  animation: heroRise 0.9s ease 0.35s both;
}

.hero-form-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.hero-form-header {
  margin-bottom: 18px;
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.hero-form-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-form-header p {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-form-box .form-group {
  margin-bottom: 14px;
}

.hero-form-box .form-group label {
  font-size: 11px;
}

.hero-form-box .form-control {
  border-radius: 8px;
  border-color: #d8dee8;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form-box .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
  outline: none;
}

.hero-form-box .btn-gold {
  margin-top: 4px;
  border-radius: 8px;
  padding: 14px 28px;
}

.hero-form-box .success-msg {
  text-align: center;
  color: #27ae60;
  font-weight: 600;
  padding: 12px 0 4px;
}

@media (max-width: 991px) {
  .hero-banner:not(.hero-banner--creative) {
    min-height: auto;
    height: auto;
    padding: 8px 0 28px;
  }

  .hero-form-box {
    max-width: 440px;
  }

  .hero-glow {
    width: 260px;
    height: 260px;
    right: -40px;
    top: 40px;
  }
}

@media (max-width: 575px) {
  .hero-event-title { font-size: 36px; }
  .hero-project-name { font-size: 24px; }
  .hero-price { font-size: 18px; }
  .hero-actions .btn { min-width: 100%; }
  .hero-project-box { padding: 18px 16px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-glow,
  .hero-content,
  .hero-form-box,
  .hero-event-badge,
  .hero-event-title,
  .hero-event-sub,
  .hero-project-card {
    animation: none !important;
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }

  .hero-bg.is-active { opacity: 1; }
  .hero-tab-progress.is-running { animation: none; transform: scaleX(1); }
}

/* Hero enquiry form */

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

textarea.form-control { resize: vertical; min-height: 80px; }

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ===== Overview ===== */
.overview-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.overview-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.overview-more {
  display: none;
}

.overview-more.show { display: block; }

.read-more-btn {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.read-more-btn:hover { color: var(--gold); }

/* ===== Amenities ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 576px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }

.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.amenity-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-light);
}

.amenity-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== Key Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.feature-num {
  font-size: 32px;
  font-weight: 700;
  color: rgba(201,162,39,0.25);
  line-height: 1;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== Projects ===== */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) { .projects-grid { grid-template-columns: 1fr 1fr; } }

.projects-grid--single {
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .projects-grid--single { grid-template-columns: 1fr; }
}

.project-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.project-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,31,63,0.75), transparent 55%);
  pointer-events: none;
}

.project-img.southx { background: none; }

.project-img-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
  color: var(--white);
}

.project-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--primary);
  margin-bottom: 8px;
}

.project-status.ready { background: #2ecc71; color: var(--white); }

.project-img-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

.project-body { padding: 28px; }

.project-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.project-meta-item {
  padding: 12px;
  background: var(--bg-light);
  border-radius: 4px;
  text-align: center;
  border-bottom: 2px solid var(--carnival-red);
}

.project-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--carnival-red);
}

.project-meta-item span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.project-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ===== Pricing tabs ===== */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  flex: 1;
  padding: 14px 24px;
  background: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--primary);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table td { font-size: 14px; }

.pricing-table tr:last-child td { border-bottom: none; }

.pricing-table tr:hover td { background: var(--bg-light); }

.price-link {
  color: var(--gold-dark);
  font-weight: 600;
  cursor: pointer;
}

.price-link:hover { color: var(--gold); text-decoration: underline; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,31,63,0);
  transition: background 0.3s;
}

.gallery-item:hover::after { background: rgba(12,31,63,0.3); }

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (min-width: 768px) {
  .gallery-item.large { min-height: 100%; }
}

/* ===== Location ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) { .location-grid { grid-template-columns: 1fr 1fr; } }

.location-grid--single {
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .location-grid--single { grid-template-columns: 1fr; }
}

.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-light);
}

.location-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.location-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ===== Growth / Connectivity ===== */
.growth-section {
  background:
    linear-gradient(135deg, rgba(26, 10, 16, 0.96), rgba(43, 18, 24, 0.94)),
    var(--primary);
  color: var(--white);
}

.growth-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .growth-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
  }
}

.growth-section .section-head--left {
  text-align: left;
  margin-bottom: 28px;
}

.growth-section .section-head--left h4 {
  color: var(--gold-light);
}

.growth-section .section-head--left h2 {
  color: var(--white);
}

.growth-section .section-head--left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.growth-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.growth-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.growth-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.growth-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-light);
}

.growth-distance {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

.growth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.growth-section .btn-carnival-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.growth-section .btn-carnival-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.growth-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.04);
}

.growth-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== About ===== */
.about-section {
  background:
    radial-gradient(ellipse at top right, rgba(155, 28, 46, 0.06), transparent 45%),
    var(--bg-light);
}

.about-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

@media (min-width: 992px) {
  .about-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: stretch;
  }
}

.about-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 320px;
  background: var(--primary);
  box-shadow: var(--shadow-lg);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-media-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--primary);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.about-media-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.about-media-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.about-body .section-head--left {
  text-align: left;
  margin-bottom: 22px;
}

.about-body .section-head--left h2,
.about-body .section-head--left p {
  margin-left: 0;
}

.about-body > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px 0 8px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .about-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
}

.about-stat {
  text-align: left;
  padding: 6px 0;
}

@media (min-width: 640px) {
  .about-stat {
    padding: 4px 12px;
    border-right: 1px solid var(--border);
  }

  .about-stat:first-child { padding-left: 0; }
  .about-stat:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--carnival-red);
  line-height: 1.2;
  margin-bottom: 4px;
}

.about-stat span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-points {
  margin: 24px 0 0;
}

.about-points li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.about-points li:last-child { border-bottom: none; }

.about-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.about-quote {
  margin: 28px 0 0;
  padding: 18px 0 0 18px;
  border-left: 3px solid var(--carnival-red);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
}

.faq-question:hover { background: var(--bg-light); }

.faq-icon {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ===== Event Highlights ===== */
.event-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .event-highlights { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .event-highlights { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.event-highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--carnival-red);
  border-radius: 10px;
  padding: 28px 22px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.event-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(155, 28, 46, 0.35);
  border-top-color: var(--gold);
}

.event-highlight-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--carnival-red);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.event-highlight h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.event-highlight p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== Offer Strip ===== */
.offer-strip {
  background: linear-gradient(135deg, var(--primary) 0%, #16325a 100%);
  padding: 28px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.offer-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

@media (min-width: 900px) {
  .offer-strip-inner {
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 28px;
  }
}

.offer-strip-item span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.offer-strip-item strong {
  font-size: 18px;
  color: var(--gold-light);
  font-weight: 700;
}

.offer-strip-cta {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .offer-strip-cta { grid-column: auto; }
}

.offer-strip-cta .btn {
  width: 100%;
  white-space: nowrap;
}

/* ===== Event Project ===== */
.event-project {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

@media (min-width: 900px) {
  .event-project {
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
  }
}

.event-project-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  background: var(--primary);
}

.event-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.event-project-media .project-status {
  position: absolute;
  top: 16px;
  left: 16px;
}

.event-project-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.event-project-body > p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.event-project-list {
  margin: 20px 0 24px;
}

.event-project-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.event-project-list li:last-child { border-bottom: none; }

.event-project-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.event-project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-inline {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-inline h3 {
  text-align: center;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* ===== Floor Plans ===== */
.floorplans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .floorplans-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .floorplans-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.floorplan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.floorplan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.floorplan-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8e4dc;
}

.floorplan-blur {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(6px);
  transform: scale(1.08);
  display: block;
}

.floorplan-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 16, 0.28);
  pointer-events: none;
}

.floorplan-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--white);
  background: var(--carnival-red);
  padding: 6px 10px;
  border-radius: 4px;
}

.floorplan-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--carnival-red), var(--carnival-red-dark));
  padding: 12px 22px;
  border-radius: 6px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 8px 24px rgba(26, 10, 16, 0.35);
}

.floorplan-view-btn:hover {
  background: linear-gradient(135deg, var(--carnival-red-light), var(--carnival-red));
  transform: translate(-50%, -52%);
  box-shadow: 0 12px 28px rgba(26, 10, 16, 0.4);
}

.floorplan-body {
  padding: 18px 20px 20px;
}

.floorplan-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.floorplan-body > p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.floorplans-cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== Demand Engine ===== */
.demand-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 28px;
}

@media (min-width: 640px) {
  .demand-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.demand-stat {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: var(--shadow);
}

.demand-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--carnival-red);
  line-height: 1.2;
  margin-bottom: 8px;
}

.demand-stat span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.demand-note {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== Experience Pillars ===== */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .experience-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.experience-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 39, 0.35);
}

.experience-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  background: linear-gradient(135deg, var(--carnival-red), var(--carnival-red-dark));
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.experience-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.experience-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== Leading Brands ===== */
.brands-floor-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.brands-floor-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.brands-floor-btn:hover {
  color: var(--carnival-red);
  border-color: rgba(155, 28, 46, 0.35);
}

.brands-floor-btn.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--carnival-red), var(--carnival-red-dark));
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(155, 28, 46, 0.25);
}

.brands-panel { display: none; }
.brands-panel.active { display: block; }

.brands-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 600px) {
  .brands-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
}

@media (min-width: 900px) {
  .brands-logo-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
}

.brands-logo-grid img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.brands-logo-grid img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 160, 23, 0.4);
}

/* ===== Connect ===== */
.connect-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
}

.connect-section .section-head h2 { color: var(--white); }
.connect-section .section-head h4 { color: var(--gold-light); }
.connect-section .section-head p { color: rgba(255,255,255,0.75); }

.connect-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.connect-form-wrap .form-group label { color: var(--text); }

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
  padding: 50px 0 24px;
  font-size: 14px;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-brand .logo-text .main { color: var(--white); }

.footer-brand p { margin-top: 12px; line-height: 1.7; font-size: 13px; }

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* Floating buttons */
.float-enquire {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
  font-size: 24px;
}

.float-btn:hover { transform: scale(1.1); }

.float-enquire-main {
  background: linear-gradient(135deg, var(--carnival-red), var(--carnival-red-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  width: auto;
  padding: 0 24px;
  border-radius: 8px;
  height: 52px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(155, 28, 46, 0.4);
  text-decoration: none;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 8px;
  padding: 0;
  max-width: 820px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .modal-with-image { grid-template-columns: 0.85fr 1.15fr; max-height: 90vh; }
}

.modal-image {
  display: none;
  min-height: 200px;
  background: #1a0a10;
}

@media (min-width: 640px) {
  .modal-image {
    display: block;
    min-height: 100%;
    max-height: 90vh;
  }
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.modal-body {
  padding: 36px;
  position: relative;
}

.modal-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.modal-body > p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  z-index: 2;
}

.hidden { display: none !important; }

.success-msg {
  text-align: center;
  padding: 20px 0;
}

.success-msg h3 { color: #27ae60; margin-bottom: 12px; }

/* Property detail inline */
.detail-block { margin-bottom: 60px; }
.detail-block:last-child { margin-bottom: 0; }

.detail-block h2 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 8px;
}

.detail-block .subtitle {
  color: var(--gold-dark);
  font-size: 15px;
  margin-bottom: 24px;
}

/* ===== Agenda ===== */
.agenda-section {
  background:
    radial-gradient(ellipse at top right, rgba(212, 160, 23, 0.12), transparent 40%),
    var(--white);
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: none;
}

@media (min-width: 640px) {
  .agenda-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .agenda-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.agenda-step {
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 22px 24px;
  overflow: hidden;
}

.agenda-step::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: linear-gradient(var(--carnival-red), var(--gold));
  border-radius: 3px 0 0 3px;
}

.agenda-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: rgba(155, 28, 46, 0.18);
  line-height: 1;
  margin-bottom: 14px;
}

.agenda-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

.agenda-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== Offer Spotlight ===== */
.offer-spotlight {
  padding: 70px 0;
  background:
    linear-gradient(135deg, #1a0a10 0%, #6e1220 55%, #9b1c2e 100%);
  position: relative;
  overflow: hidden;
}

.offer-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 193, 75, 0.22), transparent 35%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.02) 18px,
      rgba(255, 255, 255, 0.02) 36px
    );
  pointer-events: none;
}

.offer-spotlight-card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 8px 0;
}

.offer-spotlight-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 22px;
}

.offer-spotlight-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.offer-spotlight-card h2 span {
  color: var(--gold-light);
}

.offer-spotlight-card > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-bottom: 28px;
}

.offer-spotlight-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 32px;
}

@media (min-width: 700px) {
  .offer-spotlight-meta { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.offer-spotlight-meta > div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(240, 193, 75, 0.25);
  border-radius: 8px;
  padding: 16px 12px;
}

.offer-spotlight-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-spotlight-meta span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.offer-spotlight-actions .btn-carnival {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--primary);
  box-shadow: 0 8px 22px rgba(212, 160, 23, 0.3);
}

.offer-spotlight-actions .btn-carnival:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
}

.offer-spotlight-actions .btn-carnival-outline {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.offer-spotlight-actions .btn-carnival-outline:hover {
  background: var(--gold-light);
  color: var(--primary);
}

/* ===== Register Shell ===== */
.register-section {
  background:
    radial-gradient(ellipse at bottom left, rgba(155, 28, 46, 0.1), transparent 45%),
    var(--bg-section);
  padding: 80px 0;
}

.register-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

@media (min-width: 900px) {
  .register-shell {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
  }
}

.register-copy {
  padding: 36px 28px;
  background:
    linear-gradient(160deg, #1a0a10 0%, #6e1220 70%, #9b1c2e 100%);
  color: var(--white);
  position: relative;
}

@media (min-width: 900px) {
  .register-copy { padding: 48px 40px; }
}

.register-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.register-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.register-copy > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.register-perks {
  margin-bottom: 24px;
}

.register-perks li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.register-perks li:last-child { border-bottom: none; }

.register-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.register-call {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.register-call:hover { color: var(--gold); }

.register-shell .connect-form-wrap {
  margin: 0;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  padding: 36px 28px;
}

@media (min-width: 900px) {
  .register-shell .connect-form-wrap { padding: 48px 40px; }
}

/* ===== Thank You Page ===== */
.thankyou-page {
  padding: 70px 0 90px;
  min-height: 70vh;
  background:
    radial-gradient(ellipse at top, rgba(155, 28, 46, 0.1), transparent 45%),
    var(--bg-light);
  display: flex;
  align-items: center;
}

.thankyou-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--carnival-red);
  border-radius: 14px;
  padding: 42px 28px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .thankyou-card { padding: 56px 48px; }
}

.thankyou-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 8px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.thankyou-card h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.thankyou-card > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.thankyou-points {
  text-align: left;
  max-width: 360px;
  margin: 0 auto 28px;
}

.thankyou-points li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.thankyou-points li:last-child { border-bottom: none; }

.thankyou-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--carnival-red);
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.thankyou-note {
  font-size: 13px;
  color: var(--text-muted);
}

.thankyou-note a {
  color: var(--carnival-red);
  text-decoration: underline;
}

/* ===== Legal Pages ===== */
.legal-page {
  padding: 48px 0 80px;
  background:
    radial-gradient(ellipse at top, rgba(155, 28, 46, 0.06), transparent 40%),
    var(--bg-light);
  min-height: 70vh;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .legal-content { padding: 48px 52px; }
}

.legal-back {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--carnival-red);
  margin-bottom: 22px;
}

.legal-back:hover { color: var(--carnival-red-dark); }

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.legal-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--carnival-red);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 28px 0 12px;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--carnival-red);
  margin: 18px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content a {
  color: var(--carnival-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 18px;
  list-style: disc;
}

.legal-content li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-updated {
  margin-top: 32px !important;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-weight: 600 !important;
  color: var(--text) !important;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover { color: var(--gold); }

.footer-disclaimer-note {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 900px;
  margin: 0 auto 20px;
}

