/* ============================================
   VALORIM IMMOBILIER — Premium Art Nouveau Nancy
   Stylesheet
   ============================================ */

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

:root {
  --primary: #0c5050;
  --primary-light: #0e6868;
  --secondary: #fdf6ec;
  --gold: #c8a45e;
  --gold-dark: #b8934e;
  --bg: #fffcf6;
  --card-bg: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --gold-gradient: linear-gradient(135deg, #c8a45e, #b8934e);
  --teal-gradient: linear-gradient(135deg, #0c5050, #0a3e3e);
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --section-padding: 90px 0;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--secondary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* --- Section --- */
.section { padding: var(--section-padding); position: relative; }
.section-teal { background: var(--primary); color: #fff; }
.section-teal h2, .section-teal h3, .section-teal p { color: #fff; }
.section-cream { background: var(--secondary); }
.section-bg { background: var(--bg); }

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--text);
}
.section-teal .section-title { color: #fff; }
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-teal .section-subtitle { color: rgba(255,255,255,0.8); }

/* --- Wave Divider --- */
.wave-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
  background: transparent;
}
.wave-divider svg { position: absolute; bottom: 0; width: 100%; height: 60px; }
.wave-cream svg path { fill: var(--secondary); }
.wave-white svg path { fill: var(--bg); }
.wave-teal svg path { fill: var(--primary); }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
  background: rgba(12,80,80,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.scrolled {
  background: rgba(12,80,80,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold-gradient) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* --- Mobile Menu --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--teal-gradient);
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(200,164,94,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200,164,94,0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(12,80,80,1) 0%, rgba(10,62,62,1) 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero h1 {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.hero-gold-line {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 24px;
  border-radius: 2px;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}
.btn-gold {
  background: var(--gold-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,164,94,0.3);
}
.btn-gold:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,164,94,0.4); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-outline-teal {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-teal:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* --- Cards Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* --- Property Card --- */
.property-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(200,164,94,0.1);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-bottom: 3px solid var(--gold);
}
.property-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.property-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.8);
}
.property-img-placeholder.luxury-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.property-img-placeholder.luxury-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.property-img-placeholder.luxury-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.property-img-placeholder.luxury-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.property-img-placeholder.luxury-5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.property-img-placeholder.luxury-6 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.property-img-placeholder.luxury-7 { background: linear-gradient(135deg, #fccb90, #d57eeb); }
.property-img-placeholder.luxury-8 { background: linear-gradient(135deg, #e0c3fc, #8ec5fc); }
.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-gradient);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.property-body { padding: 20px; }
.property-price {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.property-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.property-meta {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.property-location {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Quartier Card --- */
.quartier-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(200,164,94,0.1);
  position: relative;
  overflow: hidden;
}
.quartier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.quartier-card:hover::before { transform: scaleX(1); }
.quartier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.quartier-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--primary); }
.quartier-price {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.quartier-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* --- Savoir-faire Card --- */
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(200,164,94,0.08);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
  border: 2px solid rgba(200,164,94,0.2);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.95rem; }

/* --- Testimonial Card --- */
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(200,164,94,0.08);
}
.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-info strong { display: block; font-size: 0.95rem; color: var(--text); }
.testimonial-info span { font-size: 0.85rem; color: var(--muted); }
.testimonial-stars { color: var(--gold); margin-bottom: 8px; font-size: 0.9rem; letter-spacing: 2px; }

/* --- Team Card --- */
.team-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 3px solid var(--primary);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--teal-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 2rem;
  font-family: Georgia, serif;
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .team-title { color: var(--gold); font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.team-card p { color: var(--muted); font-size: 0.9rem; }

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-item p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.section-bg .stat-item p { color: var(--muted); }

/* --- FAQ --- */
.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(200,164,94,0.08);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0d8cc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,94,0.15);
}
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- Table --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.data-table th {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}
.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0ebe0;
  font-size: 0.95rem;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--secondary); }

/* --- Steps --- */
.steps { position: relative; max-width: 700px; margin: 0 auto; }
.steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}
.step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  z-index: 1;
  font-family: Georgia, serif;
}
.step-content h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step-content p { color: var(--muted); font-size: 0.95rem; }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 8px; color: #ccc; }

/* --- Page Header --- */
.page-header {
  background: var(--teal-gradient);
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
}
.page-header h1 { color: #fff; font-size: 2.6rem; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-header .hero-gold-line { margin: 16px auto 20px; }

/* --- Filter Bar --- */
.filter-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.filter-bar select, .filter-bar input {
  flex: 1;
  min-width: 160px;
  padding: 12px 16px;
  border: 1px solid #e0d8cc;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fff;
  appearance: none;
}
.filter-bar button { flex-shrink: 0; }

/* --- Contact Info --- */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--gold);
  border: 1px solid rgba(200,164,94,0.2);
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p { color: var(--muted); font-size: 0.95rem; }

/* --- Footer --- */
.site-footer {
  background: #0a3a3a;
  color: rgba(255,255,255,0.8);
  padding: 60px 24px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; position: relative; padding-bottom: 8px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-col a { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-certifs { display: flex; gap: 16px; align-items: center; }
.footer-certifs span {
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--gold);
}

/* --- Art Nouveau Decorations --- */
.ornament {
  position: relative;
}
.ornament::before,
.ornament::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(200,164,94,0.15);
}
.ornament::before { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.ornament::after { bottom: -8px; right: -8px; border-left: none; border-top: none; }

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* --- Property Filters Tags --- */
.filter-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tag {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid #e0d8cc;
  background: #fff;
  color: var(--text);
  transition: all var(--transition);
}
.filter-tag.active, .filter-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* --- Rich Content --- */
.rich-content { max-width: 800px; margin: 0 auto; }
.rich-content h3 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--primary); }
.rich-content p { margin-bottom: 16px; color: var(--muted); line-height: 1.8; }
.rich-content ul { margin-bottom: 16px; padding-left: 20px; }
.rich-content ul li { color: var(--muted); margin-bottom: 8px; position: relative; padding-left: 16px; }
.rich-content ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--teal-gradient);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,164,94,0.1) 0%, transparent 70%);
}
.cta-banner h2 { color: #fff; font-size: 1.8rem; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 24px; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(12,80,80,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { text-align: center; margin-top: 12px; }

  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .section-title { font-size: 1.8rem; }
  .page-header h1 { font-size: 2rem; }
  .grid-2, .grid-3, .grid-6 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 32px 20px; }
  .steps::before { left: 24px; }
  .hero-btns { flex-direction: column; align-items: center; }
  :root { --section-padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .container { padding: 0 16px; }
  .property-meta { flex-wrap: wrap; gap: 8px; }
}

/* --- No-JS fallback --- */
.no-js .fade-in,
.no-js .fade-in-left,
.no-js .fade-in-right {
  opacity: 1;
  transform: none;
}
