@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Gold — the brand soul */
  --gold-primary:  #C8A56B;
  --gold-mid:      #D8B57A;
  --gold-light:    #E0C38A;
  --gold-accent:   #8A6A4A;
  --gold-glow:     rgba(200, 165, 107, 0.35);
  --gold-border:   rgba(200, 165, 107, 0.5);
  --text-gold:     #C8A56B;
  --transition-theme: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-hero:    'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --text-hero:     clamp(60px, 9vw, 110px);
  --text-section:  clamp(36px, 5vw, 60px);
  --text-label:    12px;
  --text-body:     14px;
  --text-card:     11px;
}

/* Light Mode (Default) */
[data-theme="light"] {
  --bg-primary:    #F4EFE6;
  --bg-secondary:  #EDE5D8;
  --bg-card:       #F9F5EE;
  --text-primary:  #1A1A1A;
  --text-secondary:#555555; /* Note: prompt had #666666 in one place, #555555 in another, using #555555 */
  --surface:       #FFFFFF;
  --neuro-shadow1: rgba(0,0,0,0.12);
  --neuro-shadow2: rgba(255,255,255,0.9);
  --border-subtle: rgba(200,165,107,0.2);
}

/* Dark Mode */
[data-theme="dark"] {
  --bg-primary:    #0D0D0D;
  --bg-secondary:  #141414;
  --bg-card:       #1A1A1A;
  --text-primary:  #F0EBE0;
  --text-secondary:#999999;
  --surface:       #1E1E1E;
  --neuro-shadow1: rgba(0,0,0,0.5);
  --neuro-shadow2: rgba(255,255,255,0.04);
  --border-subtle: rgba(200,165,107,0.15);
}

/* Smooth theme transitions */
*, *::before, *::after {
  transition: background-color 0.45s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

html, body {
  max-width: 100%;
  overflow-x: clip;
}

img, svg, video, canvas {
  max-width: 100%;
}

/* Neumorphic shadow system */
/* Light mode neumorphism */
[data-theme="light"] .neuro-card {
  background: var(--bg-card);
  box-shadow:
    6px 6px 16px rgba(0,0,0,0.11),
    -4px -4px 10px rgba(255,255,255,0.88);
  border-radius: 20px;
}

/* Dark mode neumorphism */
[data-theme="dark"] .neuro-card {
  background: var(--bg-card);
  box-shadow:
    6px 6px 16px rgba(0,0,0,0.55),
    -3px -3px 8px rgba(255,255,255,0.04);
  border-radius: 20px;
}

/* Gold glow card (universal) */
.gold-glow-card {
  border: 1.5px solid var(--gold-border);
  box-shadow:
    0 0 30px var(--gold-glow),
    0 20px 60px rgba(0,0,0,0.3);
  border-radius: 24px;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1.5px solid var(--gold-border);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
[data-theme="dark"] .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.2);
}

/* Base Styles */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

a {
  text-decoration: none;
}

/* ==================================================
   SECTION 1: NAVBAR
   ================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-crest {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--gold-primary);
  position: relative;
}
.logo-crest::before {
  content: '';
  position: absolute;
  inset: 2px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.2;
}

.brand-tag {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gold-primary);
  font-variant: small-caps;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold-primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-wa-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}
.nav-wa-btn:hover {
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ==================================================
   MOBILE MENU
   ================================================== */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(10, 8, 5, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
 
.mobile-menu a {
  font-family: var(--font-hero);
  font-size: clamp(36px, 8vw, 60px);
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-primary); }
 
.mobile-menu .mobile-wa-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  margin-top: 10px;
}

/* ==================================================
   SECTION 2: HERO SECTION
   ================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px; /* offset for navbar */
  overflow: hidden;
}

[data-theme="dark"] .hero-section {
  background: radial-gradient(circle at center, #1A1100 0%, #0D0D0D 80%);
}

[data-theme="light"] .hero-section {
  background: radial-gradient(circle at center, #EDE5D8 0%, #F4EFE6 80%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 40px;
}

.hero-left {
  flex: 0 0 45%;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.gold-line {
  height: 1px;
  width: 30px;
  background: var(--gold-primary);
}

.hero-headline {
  font-family: var(--font-hero);
  font-size: var(--text-hero);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.text-primary {
  color: var(--text-primary);
}

.text-gold-highlight {
  color: var(--gold-primary);
}

.hero-body {
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.hero-body-frame {
  position: relative;
  max-width: 420px;
  margin-bottom: 40px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  padding: 18px 20px;
  isolation: isolate;
}

.hero-body-video,
.hero-body-overlay {
  position: absolute;
  inset: 0;
}

.hero-body-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-body-overlay {
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.58), rgba(30,18,0,0.45));
}

.hero-cta-row {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-clay-gold {
  background: var(--gold-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 
    inset 2px 2px 4px rgba(255,255,255,0.3),
    inset -2px -2px 4px rgba(0,0,0,0.2),
    0 4px 10px rgba(200,165,107,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-clay-gold:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 2px 2px 4px rgba(255,255,255,0.3),
    inset -2px -2px 4px rgba(0,0,0,0.2),
    0 8px 20px rgba(200,165,107,0.4);
}

.btn-neuro-whatsapp {
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow:
    4px 4px 10px var(--neuro-shadow1),
    -4px -4px 10px var(--neuro-shadow2);
  transition: transform 0.3s;
}
.btn-neuro-whatsapp:hover {
  transform: translateY(-2px);
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-weight: 700;
}
.scroll-bounce {
  width: 20px;
  height: 30px;
  border: 1.5px solid var(--gold-primary);
  border-radius: 15px;
  position: relative;
}
.scroll-bounce::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: scroll-bounce 2s infinite;
}

.hero-right {
  flex: 0 0 55%;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gold-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 80px rgba(200,165,107,0.3);
  animation: glow-pulse 4s ease-in-out infinite;
  z-index: 0;
}

.card-stack {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
}
.hero-card img,
.hero-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-back {
  width: 280px;
  height: 380px;
  left: 10%;
  transform: rotate(-8deg) scale(0.85);
  opacity: 0.6;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.1);
}

.card-center {
  width: 380px;
  height: 520px;
  transform: rotate(3deg);
  z-index: 3;
  --card-rotate: 3deg;
  animation: float-card 6s ease-in-out infinite;
}

.card-center video {
  display: block;
  object-fit: cover;
  object-position: center;
}

.card-front {
  width: 260px;
  height: 340px;
  right: 5%;
  bottom: 10%;
  transform: rotate(5deg);
  z-index: 4;
  border: 1px solid var(--gold-border);
}

.capacity-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 40px;
  animation: reveal-up 1s ease forwards 0.5s;
  opacity: 0;
}
.badge-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid var(--gold-border);
}
.badge-text {
  display: flex;
  flex-direction: column;
}
.badge-text small {
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}
.badge-text strong {
  font-size: 24px;
  color: var(--text-primary);
  font-family: var(--font-hero);
  line-height: 1;
}

/* ==================================================
   GLOBAL SECTION STYLES
   ================================================== */
.page-header {
  padding: 150px 40px 60px;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  font-family: var(--font-hero);
  font-size: clamp(50px, 8vw, 90px);
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.page-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 40px;
}
.section-container {
  max-width: 1440px;
  margin: 0 auto;
}
.gold-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-section);
  color: var(--text-primary);
  margin-bottom: 40px;
}

/* ==================================================
   SECTION 3: FEATURED PROPERTIES
   ================================================== */
.properties-section {
  background: var(--bg-secondary);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.filter-pills {
  display: flex;
  gap: 12px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 8px 20px;
  border-radius: 30px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold-primary);
  color: white;
  border-color: var(--gold-primary);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.property-card {
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 50px rgba(200,165,107,0.25),
    0 30px 80px rgba(0,0,0,0.35);
}
 
.prop-image-slider {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.prop-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.prop-img.active { opacity: 1; }
 
.img-dots {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.3s;
}
.dot.active { background: var(--gold-primary); }
 
.prop-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold-primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 20px;
}
.prop-type-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.6);
  color: var(--gold-primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
}
 
.prop-card-body { padding: 20px; }
 
.prop-sector-tag {
  font-size: 10px;
  color: var(--text-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
 
.prop-name {
  font-family: var(--font-hero);
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 10px;
}
 
.prop-meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.prop-meta-item {
  font-size: 10px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
}
 
.prop-description {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
.prop-price {
  font-family: var(--font-hero);
  font-size: 28px;
  color: var(--gold-primary);
  letter-spacing: 1px;
}
.prop-price-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
}
 
.prop-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.btn-whatsapp {
  flex: 1;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
 
.btn-outline-gold {
  flex: 1;
  border: 1.5px solid var(--gold-border);
  color: var(--gold-primary);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: white;
}

/* ==================================================
   SECTION 4: SECTORS
   ================================================== */
.sectors-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}
.sectors-text {
  flex: 0 0 35%;
}
.brutalist-title {
  font-family: var(--font-hero);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.sectors-scroll {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.sectors-scroll::-webkit-scrollbar { display: none; }

.sector-tag-card {
  flex: 0 0 auto;
  width: 140px;
  height: 100px;
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  background: var(--bg-card);
}
.sector-tag-card h3 {
  font-family: var(--font-hero);
  font-size: 40px;
  color: var(--gold-primary);
  line-height: 1;
}
.sector-tag-card small {
  font-size: 9px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}
.sector-tag-card:hover, .sector-tag-card.highlight {
  background: var(--gold-primary);
}
.sector-tag-card:hover h3, .sector-tag-card.highlight h3,
.sector-tag-card:hover small, .sector-tag-card.highlight small {
  color: white;
}

/* ==================================================
   SECTION 6: STATS
   ================================================== */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: var(--bg-secondary);
  padding: 80px 40px;
}
.stat-block {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-icon {
  font-size: 30px;
  margin-bottom: 16px;
}
.stat-number {
  font-family: var(--font-hero);
  font-size: 40px;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1;
}
.stat-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ==================================================
   SECTION 8: FOOTER
   ================================================== */
.footer-section {
  position: relative;
  background: #111111; /* Always dark */
  color: white;
  padding-top: 100px;
}
.footer-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; height: 300px;
  background: url('https://images.unsplash.com/photo-1546412414-e1885259563a?q=80&w=2800&auto=format&fit=crop') center/cover;
  filter: brightness(0.2);
  z-index: 0;
}
.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200,165,107,0.2);
}
.footer-title {
  font-family: var(--font-hero);
  font-size: clamp(40px, 6vw, 60px);
  line-height: 0.9;
  margin-bottom: 20px;
}
.footer-body {
  font-size: 14px;
  color: #999;
  margin-bottom: 30px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #DDD;
}
.c-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-size: 12px;
}
.footer-crest-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-crest {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 60px;
  color: var(--gold-primary);
  position: relative;
}
.footer-crest::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  font-size: 12px;
  color: #777;
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 700;
}

/* ==================================================
   INTERNAL PAGES SPECIFIC STYLES
   ================================================== */

/* Property Detail */
.prop-detail-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  background: var(--bg-card);
  margin-top: 70px;
}
.prop-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.prop-detail-main h1 {
  font-family: var(--font-hero);
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 10px;
}
.prop-detail-main .prop-sector-tag {
  font-size: 14px;
  margin-bottom: 20px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-secondary);
}
.amenity-item i {
  color: var(--gold-primary);
}
.contact-sidebar {
  position: sticky;
  top: 100px;
}
.contact-form-card {
  padding: 30px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--gold-border);
}
.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 20px;
}

/* About & Contact Layouts */
.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-grid {
  align-items: flex-start;
}
.about-img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--gold-border);
}
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  padding: 16px 24px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
}
.trust-pill-icon {
  width: 40px; height: 40px;
  background: rgba(200,165,107,0.1);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form-input {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 14px;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
}
.btn-submit {
  width: 100%;
  background: var(--gold-primary);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}
.btn-submit:hover {
  transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay h4 {
  color: white;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .prop-detail-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
}
.sector-prop-count {
  display: block;
  font-size: 11px;
  margin-top: 4px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.sector-tag-card { cursor: pointer; }
.sector-no-listings { opacity: 0.55; }
.chip-empty { opacity: 0.5; }
.chip-count { font-size: 11px; opacity: 0.7; margin-left: 3px; }

/* ── Reviews Section ───────────────────────────────────────── */
.reviews-section { background: var(--bg-alt); }

.reviews-aggregate {
  display: flex; gap: 32px; align-items: flex-start;
  flex-wrap: wrap; margin: 32px 0 40px; justify-content: center;
}
.agg-score { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 90px; }
.agg-number { font-size: clamp(40px,6vw,56px); font-weight: 800; color: var(--text-primary); line-height: 1; }
.agg-stars  { display: flex; gap: 3px; }
.agg-star   { font-size: 20px; color: #f5a623; }
.agg-star.empty { color: var(--bg-card); filter: brightness(0.6); }
.agg-label  { font-size: 12px; color: var(--text-muted); }
.agg-bars   { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 6px; }
.agg-bar-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.agg-bar-track { flex: 1; height: 8px; background: var(--bg-card); border-radius: 4px; overflow: hidden; }
.agg-bar-fill  { height: 100%; background: #f5a623; border-radius: 4px; transition: width 0.6s ease; }

/* Swiper overrides for reviews */
.reviewsSwiper { padding-bottom: 48px !important; }
.reviews-pagination .swiper-pagination-bullet { background: var(--text-muted); opacity: 0.4; }
.reviews-pagination .swiper-pagination-bullet-active { background: var(--accent); opacity: 1; }
.swiper-button-prev.reviews-prev,
.swiper-button-next.reviews-next { color: var(--accent); }

/* Review card */
.review-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1px solid rgba(128,128,128,.1);
}
.review-card-header { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent);
  color: #fff; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; text-transform: uppercase;
}
.review-meta { flex: 1; min-width: 0; }
.review-name { font-weight: 700; font-size: 15px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-date { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.review-stars { display: flex; gap: 2px; }
.review-star  { font-size: 16px; color: #f5a623; }
.review-star.empty { color: var(--bg-alt); filter: brightness(0.7); }
.review-body  { font-size: 14px; color: var(--text-primary); line-height: 1.6; flex: 1; }

/* CTA */
.reviews-cta {
  text-align: center;
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.reviews-cta .btn-clay-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reviews-cta .btn-clay-gold i,
.reviews-cta .btn-clay-gold svg {
  display: block;
  flex-shrink: 0;
}
.reviews-empty { text-align: center; color: var(--text-muted); padding: 32px 0; }

/* Write-review modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-box {
  background: var(--bg-card); border-radius: 20px; padding: 32px;
  width: 100%; max-width: 460px; position: relative;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.modal-close {
  position: absolute; top: 16px; right: 16px; background: none;
  border: none; cursor: pointer; color: var(--text-muted); padding: 4px;
}
.modal-close:hover { color: var(--text-primary); }
.modal-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.modal-box input, .modal-box textarea {
  width: 100%; background: var(--bg-alt); border: 1px solid rgba(128,128,128,.2);
  border-radius: 10px; padding: 12px 14px; font-size: 14px; color: var(--text-primary);
  font-family: inherit; resize: vertical; outline: none;
  transition: border-color .2s;
}
.modal-box input:focus, .modal-box textarea:focus { border-color: var(--accent); }
.char-count { font-size: 11px; color: var(--text-muted); text-align: right; margin-top: -10px; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-actions .btn-submit { width: auto; flex: 1; margin-bottom: 0; }
.modal-actions .btn-outline-gold {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-note { font-size: 12px; color: var(--text-muted); text-align: center; min-height: 18px; }

/* Appointment modal extras */
.appt-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.modal-input {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid rgba(128,128,128,.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.modal-input:focus { border-color: var(--accent); }
.modal-input option { background: var(--bg-card); color: var(--text-primary); }

#contactForm .form-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
#contactForm .btn-submit {
  display: block;
  width: 100%;
  text-align: center;
}

.footer-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

/* Star picker */
.star-picker { display: flex; gap: 6px; justify-content: center; }
.star-pick {
  font-size: 36px; cursor: pointer; color: var(--bg-alt);
  filter: brightness(0.6); transition: color .15s, transform .15s;
  user-select: none;
}
.star-pick.active, .star-pick.hover { color: #f5a623; filter: none; transform: scale(1.15); }
.star-label { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: -10px; }

/* Responsive */
@media (max-width: 640px) {
  .reviews-aggregate { gap: 20px; }
  .agg-bars { min-width: 100%; }
  .modal-box { padding: 24px 18px; }
}
