/* ============================================================
   شركة الصقر للعقارات — نظام التصميم (دارك + ذهبي، RTL)
   ============================================================ */

/* ---------- المتغيرات ---------- */
:root {
  --bg-900: #08080a;
  --bg-800: #0c0c0f;
  --bg-700: #121216;
  --bg-600: #18181d;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(212, 175, 55, 0.14);
  --border-strong: rgba(212, 175, 55, 0.38);

  --gold: #d4af37;
  --gold-2: #c9a227;
  --gold-light: #ecd28a;
  --gold-soft: #b9942f;
  --gold-grad: linear-gradient(135deg, #f6e9ad 0%, #d4af37 45%, #a9801e 100%);

  --text: #f4efe3;
  --text-muted: #a39e92;
  --text-dim: #6f6b62;
  --green: #4caf7d;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 18px 50px -18px rgba(212, 175, 55, 0.35);
  --maxw: 1240px;
  --nav-h: 76px;

  --ff-display: "El Messiri", "Reem Kufi", "Tajawal", sans-serif;
  --ff-body: "Tajawal", "El Messiri", system-ui, sans-serif;
}

/* ---------- إعادة الضبط ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--bg-900);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* خلفية سنمائية خفيفة */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(212, 175, 55, 0.10), transparent 60%),
    radial-gradient(700px 500px at 0% 20%, rgba(212, 175, 55, 0.05), transparent 55%),
    linear-gradient(180deg, var(--bg-900), var(--bg-800) 40%, var(--bg-900));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}

/* ---------- أدوات ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

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

.muted { color: var(--text-muted); }
.center { text-align: center; }

.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- الأزرار ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad);
  color: #1a1407;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 60px -16px rgba(212, 175, 55, 0.55); }
.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.08); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* ---------- شريط التنقل ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(212,175,55,.4)); }
.brand .name { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; line-height: 1.1; }
.brand .name small { display: block; font-size: 0.62rem; letter-spacing: 2px; color: var(--gold); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); background: rgba(212,175,55,0.08); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: 0.3s; }

/* ---------- الهيرو ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  background-image: url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1900&q=80");
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,10,0.96) 0%, rgba(8,8,10,0.78) 45%, rgba(8,8,10,0.45) 100%),
    linear-gradient(0deg, var(--bg-900) 2%, transparent 40%);
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(212,175,55,0.08); border: 1px solid var(--border-strong);
  color: var(--gold-light); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 18px;
  max-width: 16ch;
}
.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 54ch;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

/* شريط البحث الذهبي */
.search-panel {
  background: rgba(12, 12, 15, 0.82);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  max-width: 880px;
}
.search-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr auto; gap: 12px; }
.search-field { display: flex; flex-direction: column; gap: 5px; }
.search-field label { font-size: 0.72rem; color: var(--text-dim); font-weight: 700; padding-inline-start: 4px; letter-spacing: 0.5px; }
.search-field select, .search-field input {
  background: var(--bg-700);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-field select:focus, .search-field input:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.search-field select option { background: var(--bg-700); }

/* ---------- العناوين ---------- */
.section { padding: 90px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-eyebrow {
  color: var(--gold); font-weight: 700; letter-spacing: 2px; font-size: 0.8rem;
  text-transform: uppercase; display: block; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- شبكة الخدمات ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(212,175,55,0.10), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(212,175,55,0.10); border: 1px solid var(--border-strong);
  color: var(--gold-light); margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ---------- الإحصاءات ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.stat-card { text-align: center; padding: 34px 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.stat-card .num { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 700; line-height: 1; }
.stat-card .label { color: var(--text-muted); margin-top: 8px; font-size: 0.95rem; }

/* ---------- شريط CTA ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% -20%, rgba(212,175,55,0.18), transparent 70%),
    linear-gradient(135deg, var(--bg-700), var(--bg-600));
  border: 1px solid var(--border-strong);
}
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta-band p { color: var(--text-muted); max-width: 52ch; margin: 0 auto 26px; }

/* ---------- شبكة العقارات + الكرت ---------- */
.toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip {
  padding: 9px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted); font-weight: 600; font-size: 0.9rem;
  transition: 0.2s;
}
.filter-chip:hover { color: var(--gold-light); border-color: var(--border-strong); }
.filter-chip.active { background: var(--gold-grad); color: #1a1407; border-color: transparent; }
.result-count { color: var(--text-dim); font-size: 0.9rem; }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 25px;
}
.property-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.property-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.property-card .media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.property-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.property-card:hover .media img { transform: scale(1.07); }
.property-card .badge {
  position: absolute; top: 14px; inset-inline-start: 14px;
  padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: 0.78rem;
  background: rgba(8,8,10,0.7); backdrop-filter: blur(8px);
}
.badge.rent { color: #8fd0ff; border: 1px solid rgba(143,208,255,0.4); }
.badge.sale { color: var(--gold-light); border: 1px solid var(--border-strong); }
.property-card .fav {
  position: absolute; top: 12px; inset-inline-end: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(8,8,10,0.65); border: 1px solid var(--border);
  color: var(--gold-light); backdrop-filter: blur(8px);
}
.property-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.property-card .price { font-family: var(--ff-display); font-weight: 700; font-size: 1.45rem; }
.property-card .title { font-size: 1.08rem; font-weight: 700; line-height: 1.4; margin: 0; }
.property-card .loc { color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.property-card .loc svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.property-card .specs { display: flex; gap: 16px; padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto; color: var(--text-muted); font-size: 0.88rem; }
.property-card .specs span { display: inline-flex; align-items: center; gap: 6px; }
.property-card .specs svg { width: 16px; height: 16px; color: var(--gold); }

/* ---------- صفحة تفاصيل العقار ---------- */
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 34px; align-items: start; }
.gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--border); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.gallery-thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); cursor: pointer; transition: 0.2s; }
.gallery-thumbs img:hover { border-color: var(--border-strong); }
.detail-info .price { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; }
.detail-info h1 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-top: 6px; }
.detail-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 22px 0; }
.spec-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
.spec-box .k { color: var(--text-dim); font-size: 0.8rem; }
.spec-box .v { font-weight: 700; font-size: 1.05rem; }
.amenities { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.amenity { padding: 7px 14px; border-radius: 999px; background: rgba(212,175,55,0.07); border: 1px solid var(--border); color: var(--gold-light); font-size: 0.85rem; font-weight: 600; }
.side-card { position: sticky; top: calc(var(--nav-h) + 18px); background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 26px; }
.side-card h3 { font-size: 1.2rem; }
.agent-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--border); }
.agent-row .av { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; color: #1a1407; font-weight: 700; font-family: var(--ff-display); }
.agent-row .meta b { display: block; }
.agent-row .meta span { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- من نحن ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-list li { display: flex; gap: 12px; padding: 10px 0; align-items: flex-start; }
.feature-list li svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; }
.feature-list li b { font-family: var(--ff-display); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 30px; }

/* ---------- تواصل ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info .item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info .item .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: rgba(212,175,55,0.10); border: 1px solid var(--border-strong); color: var(--gold-light); display: grid; place-items: center; }
.contact-info .item .ic svg { width: 20px; height: 20px; }
.contact-info .item b { display: block; }
.contact-info .item span { color: var(--text-muted); font-size: 0.92rem; }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); }
.field input, .field select, .field textarea {
  background: var(--bg-700); border: 1px solid var(--border); color: var(--text);
  padding: 13px 15px; border-radius: var(--radius-sm); font-family: inherit; font-size: 0.95rem; outline: none; transition: 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { color: var(--text-dim); font-size: 0.82rem; text-align: center; margin-top: 12px; }
.form-msg { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-weight: 600; display: none; }
.form-msg.ok { display: block; background: rgba(76,175,125,0.12); border: 1px solid rgba(76,175,125,0.4); color: #9fe6c0; }
.form-msg.err { display: block; background: rgba(220,80,80,0.12); border: 1px solid rgba(220,80,80,0.4); color: #f0a0a0; }

/* ---------- آراء العملاء ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.testi-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.testi-card p { color: var(--text-muted); font-style: italic; }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; color: #1a1407; font-weight: 700; }
.testi-card .who b { display: block; font-size: 0.95rem; }
.testi-card .who span { color: var(--text-dim); font-size: 0.82rem; }

/* ---------- التذييل ---------- */
.footer { background: var(--bg-800); border-top: 1px solid var(--border); padding: 60px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer h4 { font-size: 1.05rem; margin-bottom: 16px; }
.footer .brand { margin-bottom: 14px; }
.footer p { color: var(--text-muted); font-size: 0.92rem; max-width: 36ch; }
.footer-links a { display: block; color: var(--text-muted); padding: 6px 0; font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.85rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); color: var(--gold-light); transition: 0.2s; }
.socials a:hover { background: rgba(212,175,55,0.12); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

/* ---------- ظهور عند التمرير ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- استجابة ---------- */
@media (max-width: 980px) {
  .detail-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .search-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: var(--nav-h); inset-inline: 0;
    background: rgba(8,8,10,0.97); padding: 16px; border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-links a { padding: 13px; }
  .search-row { grid-template-columns: 1fr; }
  .form-grid.two { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* حركة عائمة خفيفة للأيقونات */
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-6px);} }
.float { animation: float 5s ease-in-out infinite; }

/* ---------- صفحة فرعية (هيرو مضغوط) ---------- */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 46px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(800px 400px at 90% -10%, rgba(212,175,55,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-800), var(--bg-900));
}
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--text-dim); font-size: 0.85rem; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { opacity: 0.5; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: var(--text-muted); max-width: 56ch; }

/* شريط الفلاتر */
.toolbar .sort {
  background: var(--bg-700); border: 1px solid var(--border); color: var(--text);
  padding: 10px 14px; border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem; outline: none;
}
.toolbar .sort:focus { border-color: var(--gold); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state .em { font-size: 3rem; margin-bottom: 10px; }

/* تفاصيل: خريطة/نموذج */
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-weight: 600; margin-bottom: 18px; }
.back-link:hover { color: var(--gold-light); }

/* ---------- ودجت التواصل العائم (سحب العملاء) ---------- */
.float-contact {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 300;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.fc-fab {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--gold-grad); border: 0;
  display: grid; place-items: center; color: #1a1407;
  box-shadow: 0 14px 34px -8px rgba(212,175,55,0.6);
  position: relative; cursor: pointer; transition: transform 0.25s ease;
}
.fc-fab:hover { transform: scale(1.06); }
.fc-fab svg { width: 27px; height: 27px; }
.fc-pulse { position: absolute; inset: 0; border-radius: 50%; animation: fcPulse 2s infinite; }
@keyframes fcPulse { 0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.55); } 70% { box-shadow: 0 0 0 18px rgba(212,175,55,0); } 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); } }
.fc-panel {
  background: rgba(12,12,15,0.97); border: 1px solid var(--border-strong);
  border-radius: 18px; padding: 14px; min-width: 250px;
  box-shadow: var(--shadow); backdrop-filter: blur(14px); display: none;
}
.float-contact.open .fc-panel { display: block; animation: fcUp 0.25s ease; }
@keyframes fcUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.fc-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--ff-display); font-weight: 700; color: var(--gold-light); margin-bottom: 10px; padding-inline-end: 4px; }
.fc-close { cursor: pointer; font-size: 1.4rem; line-height: 1; color: var(--text-muted); }
.fc-close:hover { color: var(--gold-light); }
.fc-row { display: flex; align-items: center; gap: 12px; padding: 10px 8px; border-radius: 12px; transition: 0.2s; text-decoration: none; }
.fc-row:hover { background: rgba(212,175,55,0.08); }
.fc-ic { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(212,175,55,0.12); border: 1px solid var(--border-strong); color: var(--gold-light); }
.fc-ic svg { width: 20px; height: 20px; }
.fc-ic.wa { background: rgba(37,211,102,0.14); border-color: rgba(37,211,102,0.4); color: #25d366; }
.fc-txt b { display: block; font-size: 0.92rem; color: var(--text); }
.fc-txt small { color: var(--text-muted); font-size: 0.82rem; letter-spacing: 0.5px; }

@media (max-width: 720px) {
  .float-contact { left: 14px; bottom: 14px; }
  .fc-fab { width: 56px; height: 56px; }
}
