/* ============================================================
   INVESTZA HOMES — PREMIUM NEUMORPHIC DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500;600&display=swap');

:root {
  /* Neumorphic Base Palette */
  --bg: #e8e4dc;
  --bg-dark: #1a1814;
  --surface: #ede9e0;
  --surface-dark: #222018;

  /* Gold Accent System */
  --gold: #c9a84c;
  --gold-light: #e4c26a;
  --gold-dark: #9e7a2e;
  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #e4c26a 50%, #9e7a2e 100%);

  /* Neumorphic Shadows (Light Mode) */
  --neu-shadow-out: 8px 8px 20px #c2beb6, -8px -8px 20px #ffffff;
  --neu-shadow-in: inset 6px 6px 14px #c2beb6, inset -6px -6px 14px #ffffff;
  --neu-shadow-card: 12px 12px 30px #bfbbb3, -12px -12px 30px #ffffff;
  --neu-shadow-btn: 5px 5px 12px #c2beb6, -5px -5px 12px #ffffff;
  --neu-shadow-btn-pressed: inset 4px 4px 10px #c2beb6, inset -4px -4px 10px #ffffff;

  /* Text */
  --text-primary: #1a1814;
  --text-secondary: #6b6357;
  --text-muted: #9a9189;

  /* Borders */
  --border: rgba(201, 168, 76, 0.2);
  --border-subtle: rgba(0, 0, 0, 0.06);

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.display-xl {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.display-lg {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
}

.display-md {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
}

.display-sm {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.body-lg { font-size: 1.1rem; font-weight: 300; }
.body-md { font-size: 1rem; font-weight: 300; }
.body-sm { font-size: 0.875rem; font-weight: 300; }

.overline {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   NEUMORPHIC COMPONENTS
   ============================================================ */

/* Cards */
.neu-card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--neu-shadow-card);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.6);
  transition: box-shadow var(--transition), transform var(--transition);
}

.neu-card:hover {
  box-shadow: 16px 16px 40px #bfbbb3, -16px -16px 40px #ffffff;
  transform: translateY(-4px);
}

.neu-card-inset {
  background: var(--bg);
  border-radius: 20px;
  box-shadow: var(--neu-shadow-in);
  padding: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #1a1814;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: 6px 6px 15px rgba(201, 168, 76, 0.4), -3px -3px 10px rgba(255,255,255,0.5);
}

.btn-primary:hover {
  box-shadow: 8px 8px 20px rgba(201, 168, 76, 0.5), -4px -4px 12px rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-primary:active {
  box-shadow: inset 3px 3px 8px rgba(0,0,0,0.2);
  transform: translateY(0);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: var(--neu-shadow-btn);
}

.btn-secondary:hover {
  box-shadow: 7px 7px 18px #c2beb6, -7px -7px 18px #ffffff;
  transform: translateY(-2px);
  color: var(--gold);
}

.btn-secondary:active {
  box-shadow: var(--neu-shadow-btn-pressed);
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 1px solid var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: #1a1814;
}

.btn-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--neu-shadow-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-icon:hover {
  box-shadow: 7px 7px 18px #c2beb6, -7px -7px 18px #ffffff;
  color: var(--gold);
}

/* Divider */
.gold-divider {
  width: 60px; height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin: 1.5rem 0;
}

.gold-divider.center { margin: 1.5rem auto; }

/* Section spacing */
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Flex utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* Text utilities */
.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(232, 228, 220, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--neu-shadow-btn);
  border: none;
  outline: none;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(232, 228, 220, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all var(--transition-slow);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-primary);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orb-float 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  bottom: 100px; left: -100px;
  animation: orb-float 14s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.hero-text { padding-top: 2rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  box-shadow: var(--neu-shadow-btn);
  margin-bottom: 2.5rem;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title { margin-bottom: 1.5rem; }

.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-main-card {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--neu-shadow-card);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.8);
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.property-thumb {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #d4cfc6 0%, #c2bdb4 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}

.property-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%);
}

.property-thumb-icon {
  font-size: 4rem;
  opacity: 0.4;
  z-index: 1;
}
.property-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.property-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold-gradient);
  color: #1a1814;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.property-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.property-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.property-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.property-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: right;
}

.property-price-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-align: right;
}

.hero-floating-badge {
  position: absolute;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--neu-shadow-card);
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.8);
}

.hero-floating-badge-1 {
  top: -20px; right: -30px;
  animation: float-b1 8s ease-in-out infinite;
}

.hero-floating-badge-2 {
  bottom: 30px; left: -40px;
  animation: float-b2 10s ease-in-out infinite;
}

@keyframes float-b1 {
  0%, 100% { transform: translate(0, 0) rotate(2deg); }
  50% { transform: translate(8px, -8px) rotate(-1deg); }
}

@keyframes float-b2 {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50% { transform: translate(-8px, 8px) rotate(1deg); }
}

.floating-badge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.floating-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-section {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.2rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
   ============================================================ */

/* Section Header */
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .gold-divider { margin: 1.5rem auto; }

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: var(--neu-shadow-card);
  border: 1px solid rgba(255,255,255,0.7);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  box-shadow: 16px 16px 40px #bfbbb3, -16px -16px 40px #ffffff;
  transform: translateY(-6px);
}

.feature-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--bg);
  box-shadow: var(--neu-shadow-in);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Developers Section */
.developers-section { overflow: hidden; }

.developer-logos {
  display: flex;
  gap: 2rem;
  overflow: hidden;
}

.developer-logo-track {
  display: flex;
  gap: 2rem;
  animation: logo-scroll 25s linear infinite;
}

.developer-logo-item {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--neu-shadow-btn);
  padding: 1.2rem 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.developer-logo-item:hover {
  color: var(--gold);
  box-shadow: 7px 7px 18px #c2beb6, -7px -7px 18px #ffffff;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--neu-shadow-card);
  border: 2px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.process-number-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--neu-shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Testimonials */
.testimonial-card {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--neu-shadow-card);
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.7);
  position: relative;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 2rem; left: 2.5rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--neu-shadow-in);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}

.author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
}

.author-title { font-size: 0.75rem; color: var(--text-muted); }

/* CTA Banner */
.cta-banner {
  background: var(--surface);
  border-radius: 32px;
  box-shadow: var(--neu-shadow-card);
  padding: 5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-text {
  font-size: 1.8rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1814;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

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

.footer-disclaimer-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  text-align: center;
}

/* HARERA Badge */
.harera-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--bg);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { opacity: 0.4; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade"] {
  transform: none;
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg);
  border: none;
  border-radius: 14px;
  padding: 1rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-primary);
  box-shadow: var(--neu-shadow-in);
  outline: none;
  transition: box-shadow var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  box-shadow: inset 6px 6px 14px #c2beb6, inset -6px -6px 14px #ffffff, 0 0 0 2px rgba(201,168,76,0.3);
}

.form-textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { 
    grid-template-columns: 1fr; 
    gap: 3rem; 
  }
  .hero-visual { 
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 3rem;
  }
  .hero-card-stack {
    max-width: 380px;
    width: 100%;
  }
  .hero-floating-badge-1 {
    right: -10px;
  }
  .hero-floating-badge-2 {
    left: -10px;
  }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-banner { padding: 3rem 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Hero card visible on mobile */
  .hero-visual {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 2rem;
  }
  .hero-card-stack {
    max-width: 320px;
    width: 100%;
  }
  .hero-floating-badge-1 { right: -5px; }
  .hero-floating-badge-2 { left: -5px; }
}

/* ============================================================
   LEADERSHIP CARD
   ============================================================ */
.leader-card {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--neu-shadow-card);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.leader-card:hover {
  box-shadow: 18px 18px 45px #bfbbb3, -18px -18px 45px #ffffff;
  transform: translateY(-8px);
}

.leader-img {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #d4cfc6 0%, #c2bdb4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.leader-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--surface), transparent);
}

.leader-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.5);
  z-index: 1;
}

.leader-info {
  padding: 2rem 2.5rem 2.5rem;
}

.leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.leader-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.leader-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.leader-social { display: flex; gap: 0.75rem; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  color: var(--text-primary);
}

.legal-content h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1rem 1.5rem;
}

.legal-content li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.legal-nav {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--neu-shadow-card);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.7);
  position: sticky;
  top: 100px;
}

.legal-nav-heading {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-nav-link {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition);
}

.legal-nav-link:hover { color: var(--gold); }

/* Map embed */
.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--neu-shadow-card);
  border: 1px solid rgba(255,255,255,0.7);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--neu-shadow-card);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  box-shadow: 10px 10px 25px #bfbbb3, -10px -10px 25px #ffffff;
  transform: translateY(-3px);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 5px 5px 15px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  z-index: 500;
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 7px 7px 20px rgba(37,211,102,0.5);
}
/* ============================================================
   FEATURED PROPERTIES SLIDER
   ============================================================ */
.properties-slider-wrapper {
  overflow: hidden;
  margin-top: 3rem;
  padding: 1rem 0 2rem;
}

.properties-slider-track {
  display: flex;
  gap: 2rem;
  animation: properties-scroll 30s linear infinite;
  width: max-content;
  will-change: transform;
  -webkit-animation: properties-scroll 30s linear infinite;
}

.properties-slider-track:hover {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
@media (max-width: 768px) {
  .properties-slider-wrapper {
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
  }

  .properties-slider-track {
    animation: properties-scroll 20s linear infinite;
    -webkit-animation: properties-scroll 20s linear infinite;
    animation-play-state: running !important;
    -webkit-animation-play-state: running !important;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }

  .properties-slider-track:hover {
    animation-play-state: running;
    -webkit-animation-play-state: running;
  }
}
@keyframes properties-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.property-slide-card {
  width: 320px;
  background: var(--bg);
  border-radius: 24px;
  box-shadow: var(--neu-shadow-card);
  border: 1px solid rgba(255,255,255,0.7);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.property-slide-card:hover {
  transform: translateY(-6px);
  box-shadow: 16px 16px 40px #bfbbb3, -16px -16px 40px #ffffff;
}

.psc-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.psc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.psc-harera {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(232,228,220,0.95);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.3);
}

.psc-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold-gradient);
  color: #1a1814;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}

.psc-info {
  padding: 1.5rem;
}

.psc-developer {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.psc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.psc-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.psc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.psc-price span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
}