:root {
  --primary: #0a0b0e;
  --primary-light: #151820;
  --primary-dark: #050608;
  --gold: #c9a063;
  --gold-light: #dfba8e;
  --gold-dark: #a87e4f;
  --gold-gradient: linear-gradient(135deg, #dfba8e 0%, #c9a063 50%, #a87e4f 100%);
  --dark-gradient: linear-gradient(145deg, #161922 0%, #090a0d 100%);
  --card-dark: #12141a;
  --accent-green: #2a6a52;
  --bg-light: #fbf9f6;
  --bg-warm: #f3ede2;
  --bg-card: #ffffff;
  --text-dark: #181b22;
  --text-muted: #646a78;
  --text-light: #f6f7f9;
  --border-gold: rgba(201, 160, 99, 0.35);
  --border-subtle: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(10, 11, 14, 0.12);
  --shadow-lg: 0 25px 60px rgba(10, 11, 14, 0.25);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.25;
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 50px;
}

.section-head.text-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-head h2 {
  font-size: 2.45rem;
  margin-bottom: 16px;
  position: relative;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Signature Brochure Chapter Markers & 5-Bar Accent */
.chapter-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.chapter-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.chapter-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 28px;
}

.chapter-lines span {
  display: block;
  height: 2px;
  background-color: var(--gold);
  border-radius: 1px;
}

.chapter-lines span:nth-child(2) { opacity: 0.8; }
.chapter-lines span:nth-child(3) { opacity: 0.6; }
.chapter-lines span:nth-child(4) { opacity: 0.4; }
.chapter-lines span:nth-child(5) { opacity: 0.2; }

/* Sections */
.section {
  padding: 95px 0;
  position: relative;
}

.section.alt {
  background-color: var(--bg-warm);
}

.section.dark {
  background: var(--dark-gradient);
  color: #fff;
}

.section.dark h2, .section.dark h3, .section.dark h4 {
  color: #fff;
}

.section.dark .eyebrow {
  color: var(--gold-light);
}

.section.dark p {
  color: rgba(255, 255, 255, 0.82);
}

/* Watermark Arc Background Overlay */
.arc-watermark-bg {
  position: absolute;
  top: 0;
  right: -50px;
  width: 450px;
  height: 450px;
  opacity: 0.07;
  pointer-events: none;
  background: url('images/caledonia-arc-motif.svg') no-repeat center;
  background-size: contain;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #08090b;
  box-shadow: 0 6px 20px rgba(201, 160, 99, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 160, 99, 0.5);
  filter: brightness(1.05);
}

.btn-secondary {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 11, 14, 0.3);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--gold);
}

.btn-outline-dark:hover {
  background: var(--gold);
  color: #08090b;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 11, 14, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 160, 99, 0.22);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  background: rgba(6, 7, 9, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  height: 46px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-divider {
  width: 1px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.2);
}

.brand-developer {
  display: flex;
  flex-direction: column;
}

.brand-developer span {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.brand-developer strong {
  font-size: 0.88rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--gold-light);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}

.mobile-nav-cta {
  display: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 160, 99, 0.35);
  border-radius: 8px;
  padding: 6px;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(201, 160, 99, 0.18);
  border-color: var(--gold);
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--gold-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0.2);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 115px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  background-color: #08090c;
  background-image: linear-gradient(135deg, rgba(8, 9, 12, 0.93) 0%, rgba(14, 18, 26, 0.85) 50%, rgba(8, 9, 12, 0.95) 100%),
                    url('images/brochure/gallery/entrance_gate.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  overflow: hidden;
}

.hero-arc-watermark {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: url('images/caledonia-arc-motif.svg') no-repeat center;
  background-size: contain;
  opacity: 0.14;
  pointer-events: none;
  animation: floatSlow 8s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  from { transform: translateY(0px) rotate(0deg); }
  to { transform: translateY(-15px) rotate(2deg); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(10, 11, 14, 0.5) 0%, rgba(8, 9, 12, 0.92) 100%);
  z-index: 1;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  padding-right: 15px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 160, 99, 0.16);
  border: 1px solid rgba(201, 160, 99, 0.45);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--gold);
}

.hero-copy h1 {
  font-size: 3.6rem;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 3px;
}

.hero-punchline {
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 18px;
  line-height: 1.4;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
  max-width: 580px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #f1f1f1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Form Card */
.form-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 160, 99, 0.35);
  color: var(--text-dark);
}

.form-card-head {
  text-align: center;
  margin-bottom: 22px;
}

.form-card-head h3 {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-card-head p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 14px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #d9dcde;
  background-color: #fcfcfc;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-dark);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(201, 160, 99, 0.2);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23646870' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-message {
  margin-top: 14px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #e6f4ea;
  color: #137333;
  border: 1px solid #ceead6;
}

.form-message.error {
  display: block;
  background-color: #fce8e6;
  color: #c5221f;
  border: 1px solid #fad2cf;
}

.form-rera-tag {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-rera-tag strong {
  color: var(--primary);
  display: block;
  font-size: 0.82rem;
  margin-top: 2px;
}

/* Floating Stats Strip */
.stats-strip {
  background: var(--primary);
  border-bottom: 2px solid var(--gold);
  color: #ffffff;
  padding: 24px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 0 10px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(201, 160, 99, 0.3);
}

.stat-item strong {
  display: block;
  font-size: 1.65rem;
  font-family: var(--font-heading);
  color: var(--gold-light);
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* Editorial Story Grid (Chapters) */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.story-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.story-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #11141a;
}

.story-media img, .story-media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.story-card:hover .story-media img, .story-card:hover .story-media svg {
  transform: scale(1.05);
}

.story-body {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-body h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.story-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Master Layout & Plans Section */
.plan-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.plan-tab-btn {
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid #dcdfe4;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.25s ease;
}

.plan-tab-btn.active, .plan-tab-btn:hover {
  background: var(--primary);
  color: var(--gold-light);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.plan-pane {
  display: none;
  animation: fadeIn 0.35s ease;
}

.plan-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.plans-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.masterplan-view {
  background: #ffffff;
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.masterplan-view svg, .masterplan-view img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  cursor: pointer;
}

.masterplan-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  background: rgba(10, 11, 14, 0.92);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--gold);
}

.config-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.config-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.config-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.config-head h3 {
  font-size: 1.35rem;
  color: var(--primary);
}

.config-pill {
  background: var(--bg-warm);
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.config-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--bg-light);
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.05);
}

.config-metrics div strong {
  display: block;
  font-size: 1.15rem;
  color: var(--primary);
}

.config-metrics div span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.config-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.config-features span {
  font-size: 0.78rem;
  background: #f1f3f6;
  padding: 5px 12px;
  border-radius: 4px;
  color: #434955;
}

/* Specifications Grid (53) */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.spec-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.spec-card h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-card ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.spec-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Location Section (05) */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.location-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.location-card h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px dashed #e6e8eb;
  font-size: 0.94rem;
}

.location-list li:last-child {
  border-bottom: none;
}

.location-list strong {
  color: var(--primary);
}

.location-list span {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.88rem;
}

.map-card {
  background: #ffffff;
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  background: #eaeaea;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Legacy Section */
.legacy-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.legacy-copy h2 {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.legacy-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.legacy-stakeholders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.stakeholder-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 160, 99, 0.3);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.stakeholder-card span {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}

.stakeholder-card strong {
  font-size: 0.95rem;
  color: #fff;
}

/* Download CTA Banner */
.cta-banner {
  background: var(--dark-gradient);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 160, 99, 0.35);
  box-shadow: var(--shadow-lg);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

/* Contact & Partner Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}

.partner-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.partner-card img, .partner-card svg {
  height: 56px;
  max-width: 240px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.partner-tagline {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.partner-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.partner-rera {
  display: inline-block;
  background: var(--bg-warm);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.partner-contact-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eef0f2;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.partner-contact-row strong {
  color: var(--primary);
}

/* Site Footer */
.site-footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px;
  font-size: 0.88rem;
  border-top: 1px solid rgba(201, 160, 99, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img, .footer-brand svg {
  height: 44px;
  max-width: 220px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 380px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

/* Floating Buttons */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.call-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--primary);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(10, 11, 14, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.call-float:hover {
  transform: scale(1.1);
  background: var(--gold-gradient);
  color: #08090b;
}

.call-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 9, 12, 0.94);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img, .lightbox-content svg {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--gold-light);
}

/* Universal Enquiry Modal */
.modal-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 9, 12, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-popup.active {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  position: relative;
  padding: 34px 30px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #f0f2f5;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
}

.modal-close:hover {
  background: #e0e2e5;
  color: #000;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy {
    padding-right: 0;
    text-align: center;
  }

  .hero-actions, .hero-badges {
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: 2.9rem;
  }

  .form-card {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .plans-wrapper, .legacy-shell, .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Navigation & Header */
  .nav-container {
    padding: 10px 16px;
  }

  .brand-wrapper {
    gap: 10px;
  }

  .brand-logo {
    height: 36px;
    max-width: 140px;
  }

  .brand-divider {
    height: 22px;
  }

  .brand-developer span {
    font-size: 0.58rem;
    letter-spacing: 1px;
  }

  .brand-developer strong {
    font-size: 0.78rem;
    letter-spacing: 0.5px;
  }

  .nav-menu, .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 11, 14, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 20px 26px;
    border-bottom: 2px solid var(--gold);
    gap: 4px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu.mobile-active a {
    padding: 11px 0;
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    display: block;
  }

  .mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Typography & Layout */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 55px 0;
  }

  .section-head {
    margin-bottom: 35px;
  }

  .section-head h2 {
    font-size: 1.75rem;
  }

  .section-head p {
    font-size: 0.95rem;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 45px;
    background-attachment: scroll;
  }

  .hero-tag {
    font-size: 0.72rem;
    padding: 5px 12px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 7.5vw, 2.7rem);
    margin-bottom: 10px;
  }

  .hero-punchline {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero-badges {
    gap: 6px;
    margin-bottom: 24px;
    justify-content: center;
  }

  .hero-badges span {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  /* Form Elements */
  .form-card {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .form-card-head h3 {
    font-size: 1.25rem;
  }

  .form-control {
    font-size: 16px;
    padding: 12px 14px;
  }

  /* Stats Strip */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 10px;
  }

  .stats-grid .stat-item:last-child {
    grid-column: span 2;
    max-width: 240px;
    margin: 0 auto;
  }

  .stat-item {
    padding: 4px 6px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item strong {
    font-size: 1.45rem;
  }

  .stat-item span {
    font-size: 0.78rem;
  }

  /* Story Grid & Specs */
  .story-grid, .specs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-media {
    height: 200px;
  }

  /* Master Plan Section */
  .plans-wrapper {
    gap: 28px;
  }

  .masterplan-view {
    padding: 10px;
  }

  .masterplan-badge {
    top: 12px;
    left: 12px;
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .config-card {
    padding: 18px 16px;
  }

  .config-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* Location Section */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-card {
    padding: 20px 16px;
  }

  .location-card h3 {
    font-size: 1.2rem;
  }

  .location-list li {
    font-size: 0.86rem;
    padding: 9px 0;
  }

  .map-card {
    padding: 14px;
  }

  .map-embed {
    height: 220px;
  }

  .map-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .map-actions .btn {
    width: 100%;
  }

  /* Developer Legacy */
  .legacy-shell {
    gap: 28px;
  }

  .legacy-copy h2 {
    font-size: 1.75rem;
  }

  .legacy-stakeholders {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 30px 18px;
    text-align: center;
  }

  .cta-banner h2 {
    font-size: 1.45rem;
  }

  .cta-banner p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .cta-banner-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cta-banner .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Contact & Partner */
  .contact-grid {
    gap: 24px;
  }

  .partner-card {
    padding: 24px 16px;
  }

  .partner-card img, .partner-card svg {
    height: 48px;
  }

  .partner-name {
    font-size: 1.25rem;
  }

  .partner-contact-row {
    font-size: 0.85rem;
  }

  /* Footer */
  .site-footer {
    padding: 45px 0 25px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Modals */
  .modal-card {
    padding: 24px 16px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }

  .lightbox-content {
    max-width: 95vw;
    max-height: 85vh;
  }

  .lightbox-close {
    top: -40px;
    right: 6px;
    font-size: 2rem;
  }

  /* Floating Action Buttons */
  .whatsapp-float {
    bottom: 18px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .call-float {
    bottom: 74px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .call-float svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 32px;
    max-width: 120px;
  }

  .brand-developer span {
    font-size: 0.52rem;
    letter-spacing: 0.8px;
  }

  .brand-developer strong {
    font-size: 0.72rem;
    letter-spacing: 0.3px;
  }

  .hero-copy h1 {
    font-size: 1.95rem;
  }

  .section-head h2 {
    font-size: 1.55rem;
  }

  .stat-item strong {
    font-size: 1.3rem;
  }

  .config-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
