/* ═══════════════════════════════════════════
   LUXE ESTATE — Premium Commercial Real Estate
   Global Stylesheet
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #d4d4d4;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Cinzel', serif; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Gold Palette — Deep Antique Gold (warm, not yellow) ─── */
:root {
  --gold-primary: #b08d37;
  --gold-dark: #8b6914;
  --gold-light: #c4a24d;
  --gold-deep: #6b5310;
}

/* Override Tailwind yellow-500 with our gold */
.text-yellow-500 { color: var(--gold-primary) !important; }
.hover\:text-yellow-500:hover { color: var(--gold-primary) !important; }
.bg-yellow-500 { background-color: var(--gold-dark) !important; color: #fff !important; }
.bg-yellow-500\/10 { background-color: rgba(176, 141, 55, 0.1) !important; }
.bg-yellow-500\/20 { background-color: rgba(176, 141, 55, 0.2) !important; }
.hover\:border-yellow-500\/20:hover { border-color: rgba(176, 141, 55, 0.2) !important; }
.hover\:border-yellow-500\/30:hover { border-color: rgba(176, 141, 55, 0.3) !important; }
.border-yellow-500\/30 { border-color: rgba(176, 141, 55, 0.3) !important; }
.focus\:border-yellow-500:focus { border-color: var(--gold-primary) !important; }
.shadow-yellow-500\/20 { --tw-shadow-color: rgba(176, 141, 55, 0.2); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; }
.shadow-yellow-500\/30 { --tw-shadow-color: rgba(176, 141, 55, 0.3); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; }
.from-yellow-900\/20 { --tw-gradient-from: rgba(107, 83, 16, 0.25) !important; --tw-gradient-to: rgba(107, 83, 16, 0) !important; }
.via-yellow-800\/10 { --tw-gradient-via: rgba(107, 83, 16, 0.12) !important; }
.to-yellow-900\/20 { --tw-gradient-to: rgba(107, 83, 16, 0.25) !important; }

/* ── Gold Gradient ────────────────────── */
.gold-gradient {
  background: linear-gradient(135deg, #c4a24d 0%, #b08d37 30%, #8b6914 70%, #c4a24d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-bg {
  background: linear-gradient(135deg, #b08d37, #8b6914);
}

/* ── Glass Effect ─────────────────────── */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Navigation ───────────────────────── */
.nav-link { color: #a3a3a3; transition: color 0.3s ease; }
.nav-link:hover { color: #b08d37; }
.nav-link.active { color: #b08d37; }

/* ── Card Hover ───────────────────────── */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(176, 141, 55, 0.08);
  border-color: rgba(176, 141, 55, 0.15);
}

/* ── Scroll Reveal ────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Particles ────────────────────────── */
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: #b08d37;
  border-radius: 50%;
  animation: float-particle 6s ease-in-out infinite;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.8; }
}

/* ── Hero Parallax ────────────────────── */
.hero-parallax { transition: transform 0.1s linear; }

/* ── Section Headers ──────────────────── */
.section-label {
  color: #b08d37;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

/* ── Buttons ──────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #b08d37, #8b6914);
  color: #fff; padding: 16px 40px; border-radius: 4px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(176, 141, 55, 0.2);
}
.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(176, 141, 55, 0.3);
}

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); color: #fff;
  padding: 16px 40px; border-radius: 4px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: scale(1.02);
}

/* ── Form Inputs ──────────────────────── */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff; padding: 16px 24px; border-radius: 12px;
  font-size: 0.875rem; outline: none;
  transition: border-color 0.3s ease;
}
.form-input::placeholder { color: #525252; }
.form-input:focus { border-color: #b08d37; }

/* ── Badge ────────────────────────────── */
.badge-rent { background: rgba(37, 99, 235, 0.9); color: #fff; }
.badge-sale { background: rgba(22, 163, 74, 0.9); color: #fff; }

/* ── FAQ Accordion ────────────────────── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; transition: color 0.3s ease;
}
.faq-question:hover { color: #b08d37; }
.faq-icon {
  width: 24px; height: 24px; position: relative; flex-shrink: 0; margin-left: 16px;
  transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: #b08d37; border-radius: 1px;
}
.faq-icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 16px; transform: translate(-50%, -50%); transition: transform 0.3s ease; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: #a3a3a3; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 24px; }

/* ── Calculator ───────────────────────── */
.calc-result {
  background: linear-gradient(135deg, rgba(176,141,55,0.1), rgba(139,105,20,0.05));
  border: 1px solid rgba(176,141,55,0.2);
  border-radius: 16px; padding: 32px; text-align: center;
}

/* ── Object Page Breadcrumb ───────────── */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.875rem; color: #737373; }
.breadcrumb a:hover { color: #b08d37; }

/* ── Floating WhatsApp ────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); background: #20bd5a; }

/* ── Mobile Menu ──────────────────────── */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(0,0,0,0.97); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}

/* ── Responsive Utilities ─────────────── */
.line-clamp-1 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Privacy Page ─────────────────────── */
.privacy-content h3 { color: #b08d37; margin-top: 32px; margin-bottom: 16px; font-size: 1.25rem; }
.privacy-content p, .privacy-content li { color: #a3a3a3; line-height: 1.8; margin-bottom: 12px; }
.privacy-content ul { padding-left: 24px; list-style: disc; }
