/* ============================================================
   MAANERA — Ultra-Premium Luxury Real Estate
   Design System & Complete Styles
   ============================================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --black: #0B0B0B;
  --gold: #C6A962;
  --gold-light: #d4be7a;
  --gold-dark: #a8903e;
  --charcoal: #121212;
  --warm-grey: #8F8F8F;
  --soft-white: #F5F5F5;
  --white: #ffffff;
  --overlay: rgba(11, 11, 11, 0.6);
  --overlay-heavy: rgba(11, 11, 11, 0.85);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1280px;
  --container-padding: 0 40px;

  /* Transitions */
  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s var(--ease-luxury);
  --transition-medium: 0.5s var(--ease-luxury);
  --transition-fast: 0.3s var(--ease-luxury);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--soft-white);
  background-color: var(--black);
  line-height: 1.8;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button, input, textarea, select {
  cursor: none;
  font-family: var(--font-body);
}

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

ul, ol {
  list-style: none;
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-luxury),
              height 0.3s var(--ease-luxury),
              border-color 0.3s var(--ease-luxury),
              background-color 0.3s var(--ease-luxury);
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 56px;
  height: 56px;
  background-color: rgba(198, 169, 98, 0.1);
  border-color: var(--gold-light);
}

.cursor.pointer {
  width: 48px;
  height: 48px;
  background-color: rgba(198, 169, 98, 0.15);
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ---------- Loading Screen ---------- */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 30px;
  animation: loadingLine 1.5s var(--ease-luxury) infinite;
}

@keyframes loadingLine {
  0% { width: 0; opacity: 0; }
  50% { width: 80px; opacity: 1; }
  100% { width: 160px; opacity: 0; }
}

.loading-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-luxury) 0.5s forwards;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

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

p {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--warm-grey);
  line-height: 1.9;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background-color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--soft-white);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--gold);
  transition: left 0.5s var(--ease-out-expo);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--black);
}

.btn-filled {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-filled::before {
  background-color: var(--black);
}

.btn-filled:hover {
  color: var(--gold);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s var(--ease-luxury);
}

.btn-arrow:hover::after {
  transform: translateX(5px);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: background-color 0.5s, padding 0.5s, backdrop-filter 0.5s;
}

.navbar.scrolled {
  background-color: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(20px);
  padding: 16px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-white);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--transition-medium);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 10px 28px;
  border: 1px solid var(--gold);
  transition: var(--transition-medium) !important;
}

.nav-cta:hover {
  background-color: var(--gold);
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--soft-white);
  transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: right 0.6s var(--ease-out-expo);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-white);
  transition: color var(--transition-fast);
}

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

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, -1%); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 11, 0.4) 0%,
    rgba(11, 11, 11, 0.2) 40%,
    rgba(11, 11, 11, 0.6) 80%,
    rgba(11, 11, 11, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-content .section-label {
  justify-content: center;
  margin-bottom: 28px;
}

.hero-content h1 {
  margin-bottom: 24px;
  font-weight: 300;
  font-style: italic;
}

.hero-content h1 span {
  color: var(--gold);
  font-style: normal;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--warm-grey);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-line {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: heroLinePulse 2s var(--ease-luxury) infinite;
  z-index: 2;
}

@keyframes heroLinePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- Marquee ---------- */
.marquee-section {
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(198, 169, 98, 0.15);
  border-bottom: 1px solid rgba(198, 169, 98, 0.15);
  background-color: var(--black);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 0 40px;
  opacity: 0.7;
}

.marquee-track span::after {
  content: '✦';
  margin-left: 40px;
  font-size: 0.6rem;
  vertical-align: middle;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- About Section ---------- */
.about-section {
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.about-image-frame {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-content .brand-statement {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin: 32px 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(198, 169, 98, 0.12);
  transition: var(--transition-medium);
}

.feature-card:hover {
  border-color: var(--gold);
  background-color: rgba(198, 169, 98, 0.03);
}

.feature-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ---------- Properties Section ---------- */
.properties-section {
  padding: var(--section-padding);
  background-color: var(--charcoal);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.section-header h2 {
  max-width: 500px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.property-card {
  background-color: var(--black);
  border: 1px solid rgba(198, 169, 98, 0.08);
  transition: var(--transition-medium);
  overflow: hidden;
}

.property-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.property-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.property-card:hover .property-card-image img {
  transform: scale(1.08);
}

.property-save {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(11, 11, 11, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 169, 98, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-white);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.property-save:hover,
.property-save.saved {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.property-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 16px;
  background: rgba(11, 11, 11, 0.7);
  backdrop-filter: blur(10px);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(198, 169, 98, 0.3);
}

.property-card-info {
  padding: 28px;
}

.property-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--soft-white);
  margin-bottom: 8px;
}

.property-address {
  font-size: 0.8rem;
  color: var(--warm-grey);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.property-features {
  display: flex;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(198, 169, 98, 0.1);
}

.property-features span {
  font-size: 0.75rem;
  color: var(--warm-grey);
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-features span strong {
  color: var(--soft-white);
  font-weight: 500;
}

/* ---------- Stats Counter Bar ---------- */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  border-top: 1px solid rgba(198, 169, 98, 0.1);
  border-bottom: 1px solid rgba(198, 169, 98, 0.1);
}

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

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(198, 169, 98, 0.3), transparent);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ---------- Experience / Services Section ---------- */
.experience-section {
  padding: var(--section-padding);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-image {
  height: 600px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(198, 169, 98, 0.1);
  transition: var(--transition-medium);
  align-items: flex-start;
}

.service-item:first-child {
  border-top: 1px solid rgba(198, 169, 98, 0.1);
}

.service-item:hover {
  padding-left: 12px;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
}

.service-item h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.service-item p {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ---------- Neighborhoods Section ---------- */
.neighborhoods-section {
  padding: var(--section-padding);
  background-color: var(--charcoal);
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.neighborhood-card {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.neighborhood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.neighborhood-card:hover img {
  transform: scale(1.1);
}

.neighborhood-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 11, 11, 0.9) 100%);
  transition: background 0.5s var(--ease-luxury);
}

.neighborhood-card:hover .neighborhood-overlay {
  background: linear-gradient(180deg, rgba(198, 169, 98, 0.1) 0%, rgba(11, 11, 11, 0.95) 100%);
}

.neighborhood-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
}

.neighborhood-info h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.neighborhood-card:hover .neighborhood-info h3 {
  color: var(--gold);
}

.neighborhood-info p {
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-medium);
}

.neighborhood-card:hover .neighborhood-info p {
  opacity: 1;
  transform: translateY(0);
}

.neighborhood-info .btn {
  margin-top: 16px;
  padding: 10px 24px;
  font-size: 0.65rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-medium);
  transition-delay: 0.1s;
}

.neighborhood-card:hover .neighborhood-info .btn {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  padding: var(--section-padding);
  text-align: center;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeInUp 0.8s var(--ease-luxury);
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote-icon {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--soft-white);
  line-height: 1.8;
  margin-bottom: 32px;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--soft-white);
  margin-bottom: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(198, 169, 98, 0.3);
  border: none;
  transition: var(--transition-fast);
  cursor: none;
}

.testimonial-dot.active {
  background-color: var(--gold);
  transform: scale(1.3);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  max-width: 550px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ---------- Contact Form Section ---------- */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(198, 169, 98, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-item span {
  font-size: 0.88rem;
  color: var(--warm-grey);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background-color: rgba(198, 169, 98, 0.04);
  border: 1px solid rgba(198, 169, 98, 0.15);
  color: var(--soft-white);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C6A962' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background-color: var(--black);
  color: var(--soft-white);
}

.contact-form .btn {
  align-self: flex-start;
}

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(198, 169, 98, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-column h4 {
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-white);
  margin-bottom: 24px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 0.85rem;
  color: var(--warm-grey);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--gold);
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: var(--warm-grey);
  margin-bottom: 20px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background-color: rgba(198, 169, 98, 0.04);
  border: 1px solid rgba(198, 169, 98, 0.15);
  color: var(--soft-white);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 14px 24px;
  background-color: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: transparent;
  color: var(--gold);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(198, 169, 98, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(143, 143, 143, 0.6);
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198, 169, 98, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-grey);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

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

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- Keyframe Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Page Headers (Inner Pages) ---------- */
.page-header {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.5) 0%, rgba(11, 11, 11, 0.9) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-content h1 {
  margin-bottom: 16px;
}

.page-header-content p {
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- Filter Bar ---------- */
.filter-bar {
  padding: 40px 0;
  background-color: var(--charcoal);
  border-bottom: 1px solid rgba(198, 169, 98, 0.1);
}

.filter-bar .container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  flex: 1;
  min-width: 180px;
}

.filter-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 8px;
}

.filter-group select {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(198, 169, 98, 0.04);
  border: 1px solid rgba(198, 169, 98, 0.15);
  color: var(--soft-white);
  font-size: 0.85rem;
  outline: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C6A962' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.filter-group select option {
  background-color: var(--black);
}

.filter-bar .btn {
  padding: 12px 32px;
  min-width: 140px;
  justify-content: center;
}

/* ---------- Property Details Page ---------- */
.property-detail-hero {
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.property-gallery {
  display: flex;
  height: 100%;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.property-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.gallery-nav button {
  width: 50px;
  height: 50px;
  background: rgba(11, 11, 11, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 169, 98, 0.3);
  color: var(--soft-white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.gallery-nav button:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.property-detail-content {
  padding: var(--section-padding);
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.detail-overview h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 12px;
}

.detail-location {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.detail-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 30px;
}

.detail-features {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(198, 169, 98, 0.1);
  border-bottom: 1px solid rgba(198, 169, 98, 0.1);
  margin-bottom: 32px;
}

.detail-feature {
  text-align: center;
}

.detail-feature .value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--soft-white);
  display: block;
}

.detail-feature .label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.detail-description {
  line-height: 2;
  margin-bottom: 40px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.amenity-item {
  padding: 16px 20px;
  border: 1px solid rgba(198, 169, 98, 0.1);
  font-size: 0.85rem;
  color: var(--warm-grey);
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity-item span:first-child {
  color: var(--gold);
}

/* Detail Sidebar */
.detail-sidebar {
  position: sticky;
  top: 120px;
}

.agent-card {
  padding: 36px;
  border: 1px solid rgba(198, 169, 98, 0.15);
  background-color: var(--charcoal);
  text-align: center;
  margin-bottom: 24px;
}

.agent-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
}

.agent-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.agent-card .agent-title {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.agent-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

/* ---------- Enquiry Modal ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxury);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background-color: var(--charcoal);
  border: 1px solid rgba(198, 169, 98, 0.2);
  padding: 48px;
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeInUp 0.6s var(--ease-luxury);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(198, 169, 98, 0.3);
  color: var(--soft-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.modal h3 {
  margin-bottom: 8px;
}

.modal > p {
  margin-bottom: 32px;
}

.modal .contact-form {
  gap: 20px;
}

/* ---------- Neighborhood Detail ---------- */
.neighborhood-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.neighborhood-detail-card {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.neighborhood-detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.neighborhood-detail-card:hover img {
  transform: scale(1.05);
}

.neighborhood-detail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.95));
}

.neighborhood-detail-overlay h3 {
  margin-bottom: 8px;
}

.neighborhood-detail-overlay p {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ---------- About Page ---------- */
.about-hero-section {
  padding: var(--section-padding);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story {
  padding: var(--section-padding);
  background: var(--charcoal);
}

.about-story .container {
  max-width: 800px;
  text-align: center;
}

.about-story h2 {
  margin-bottom: 24px;
}

.about-story p {
  margin-bottom: 16px;
}

.press-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid rgba(198, 169, 98, 0.1);
  margin-top: 40px;
  flex-wrap: wrap;
}

.press-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(143, 143, 143, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.press-logo:hover {
  color: var(--gold);
}

/* ---------- Contact Page Specific ---------- */
.contact-page-section {
  padding: var(--section-padding);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--charcoal);
  border: 1px solid rgba(198, 169, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.map-placeholder span {
  color: var(--warm-grey);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.office-card {
  padding: 32px;
  border: 1px solid rgba(198, 169, 98, 0.1);
  transition: var(--transition-medium);
}

.office-card:hover {
  border-color: var(--gold);
}

.office-card h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.office-card p {
  font-size: 0.82rem;
  margin-bottom: 6px;
}

/* ---------- Properties Page Grid ---------- */
.properties-page-grid {
  padding: var(--section-padding);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 0 30px;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 20px;
  }

  /* Hide custom cursor on mobile */
  .cursor, .cursor-dot {
    display: none;
  }

  body {
    cursor: auto;
  }

  a, button, input, textarea, select {
    cursor: auto;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper img {
    height: 350px;
  }

  .about-image-frame {
    top: 12px;
    left: -12px;
  }

  /* Properties */
  .property-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .stat-item::after {
    display: none !important;
  }

  /* Experience */
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-image {
    height: 350px;
  }

  /* Neighborhoods */
  .neighborhoods-grid {
    grid-template-columns: 1fr;
  }

  .neighborhood-card {
    height: 300px;
  }

  /* Contact */
  .contact-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* Feature Grid */
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  /* About Page */
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .press-logos {
    gap: 30px;
  }

  /* Offices */
  .office-cards {
    grid-template-columns: 1fr;
  }

  /* Neighborhood Detail */
  .neighborhood-detail-grid {
    grid-template-columns: 1fr;
  }

  /* Filter */
  .filter-bar .container {
    flex-direction: column;
  }

  .filter-group {
    width: 100%;
  }

  /* Modal */
  .modal {
    padding: 32px 24px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}
