/* ═══════════════════════════════════════════
   ALPHA KLID — SHARED COMPONENTS
   Nav, Footer, Buttons, Forms, Chatbot, etc.
   ═══════════════════════════════════════════ */

/* ─── LUXURY NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.4rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(8, 8, 12, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
}
nav.scrolled {
  background: rgba(8, 8, 12, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(201,168,76,0.08);
  padding: 0.9rem 3.5rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-badge {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  margin-right: 0.3rem;
  vertical-align: super;
  letter-spacing: 0;
}
.nav-cta-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 0.55rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.4s;
  letter-spacing: 0.5px;
}
.nav-cta-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  margin: 5px 0;
  transition: 0.3s;
}
/* Mobile menu open state */
nav.nav-open .mobile-menu-btn span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
nav.nav-open .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}
nav.nav-open .mobile-menu-btn span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8,8,12,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  nav.nav-open .nav-links {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
  }
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.05rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(201,168,76,0.2);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.btn-outline:hover { color: var(--gold); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  transition: all 0.4s;
  letter-spacing: 0.3px;
}
.btn-wa:hover {
  border-color: #25D366;
  color: #25D366;
  transform: translateY(-2px);
}
.btn-wa svg { width: 18px; height: 18px; fill: #25D366; flex-shrink: 0; }

/* ─── LEAD FORM ─── */
.lead-form-section {
  background: linear-gradient(170deg, #faf8f3 0%, #f3efe6 100%);
  padding: 6rem 2rem;
  position: relative;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.lead-form-wrap {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 0 0 1px rgba(201,168,76,0.08);
  position: relative;
}
.lead-form-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,168,76,0.25), transparent 50%, rgba(201,168,76,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.lead-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.lead-form-header h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.lead-form-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group {
  position: relative;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--dark);
  background: #fafaf9;
  transition: all 0.3s;
  outline: none;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0,0,0,0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select {
  appearance: none;
  cursor: pointer;
  color: rgba(0,0,0,0.3);
}
.form-group select.selected {
  color: var(--dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-submit {
  margin-top: 0.8rem;
  width: 100%;
  padding: 1.15rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.form-submit:active {
  transform: translateY(0);
}
.privacy-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  cursor: pointer;
}
.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.privacy-check a {
  color: var(--gold);
  text-decoration: underline;
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show {
  display: block;
}
.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .lead-form-wrap { padding: 2.5rem 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form-section { padding: 4rem 1.5rem; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.4);
  padding: 3.5rem 2rem 2rem;
}
footer .gold { color: var(--gold); }
.footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  text-align: right;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 2;
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .footer-phone {
  direction: ltr;
  display: inline-block;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}

/* ─── MAP SECTION ─── */
.map-section {
  padding: 4rem 2rem;
  background: linear-gradient(175deg, #0c0c14 0%, #111119 100%);
}
.map-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.map-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.map-address {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.map-embed {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.map-embed iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* ─── PRIVACY MODAL ─── */
.privacy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.privacy-overlay.active { display: flex; }
.privacy-modal {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.8;
  direction: rtl;
  position: relative;
}
.privacy-modal h2 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.privacy-modal h3 {
  color: #fff;
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
}
.privacy-modal p { margin-bottom: 0.8rem; }
.privacy-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}
.privacy-close:hover { color: #fff; }

/* ─── WHATSAPP WIDGET ─── */
.wa-widget-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-widget-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.wa-widget-btn svg { width: 28px; height: 28px; fill: #fff; }
.wa-widget-btn .wa-icon-close { display: none; }
.wa-widget-btn.active .wa-icon-open { display: none; }
.wa-widget-btn.active .wa-icon-close { display: block; }
.wa-widget-btn.active { background: #128C7E; }
.wa-widget {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 999;
  width: 370px;
  max-width: calc(100vw - 2rem);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(37,211,102,0.15);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-widget.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-widget-header {
  background: #075E54;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.wa-widget-avatar { position: relative; flex-shrink: 0; }
.wa-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.wa-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid #075E54;
}
.wa-widget-info strong { color: #fff; font-size: 0.95rem; display: block; font-weight: 600; }
.wa-widget-info span { color: rgba(255,255,255,0.65); font-size: 0.75rem; }
.wa-widget-body {
  background: #0b141a;
  padding: 1.2rem;
  min-height: 100px;
}
.wa-msg-bubble {
  background: #1f2c34;
  color: rgba(255,255,255,0.88);
  padding: 0.8rem 1rem;
  border-radius: 0 12px 12px 12px;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 90%;
  position: relative;
  animation: chatFade 0.4s ease;
  direction: rtl;
}
.wa-msg-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  width: 0; height: 0;
  border: 8px solid transparent;
  border-top-color: #1f2c34;
  border-right: 0;
}
.wa-msg-time {
  display: block;
  text-align: left;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
}
.wa-widget-quick {
  background: #0b141a;
  padding: 0 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.wa-quick-btn {
  background: transparent;
  border: 1px solid rgba(37,211,102,0.35);
  color: #25D366;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
  white-space: nowrap;
}
.wa-quick-btn:hover {
  background: rgba(37,211,102,0.12);
  border-color: #25D366;
  color: #fff;
}
.wa-widget-input {
  background: #1f2c34;
  padding: 0.6rem 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.wa-widget-input form { display: flex; align-items: center; gap: 0.5rem; }
.wa-widget-input input {
  flex: 1;
  background: #0b141a;
  border: none;
  border-radius: 24px;
  padding: 0.7rem 1rem;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.88rem;
  outline: none;
}
.wa-widget-input input::placeholder { color: rgba(255,255,255,0.35); }
.wa-widget-input button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s;
}
.wa-widget-input button:hover { background: #22c55e; }

/* ─── FLOATING CTA (MOBILE) ─── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 999;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}
.floating-cta.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 30px rgba(201,168,76,0.35), 0 0 0 4px rgba(201,168,76,0.1);
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .floating-cta {
    display: block;
    max-width: calc(100% - 2rem);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .wa-widget-btn {
    bottom: 5rem;
    bottom: calc(5rem + env(safe-area-inset-bottom, 0));
    width: 54px; height: 54px;
  }
  .wa-widget {
    bottom: 8.5rem;
    bottom: calc(8.5rem + env(safe-area-inset-bottom, 0));
    right: 1rem; left: 1rem; width: auto;
  }
}

/* ─── CHATBOT ─── */
.chatbot-toggle {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
}
.chatbot-toggle svg { width: 26px; height: 26px; fill: var(--dark); }
.chatbot-toggle .icon-close { display: none; }
.chatbot-toggle.active .icon-chat { display: none; }
.chatbot-toggle.active .icon-close { display: block; }

.chatbot-window {
  position: fixed;
  bottom: 5rem;
  left: 1.5rem;
  z-index: 999;
  width: 360px;
  max-width: calc(100vw - 2rem);
  max-height: 500px;
  background: var(--dark);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.chatbot-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-header {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chatbot-header-text strong {
  color: #fff;
  font-size: 0.9rem;
  display: block;
}
.chatbot-header-text span {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 200px;
  max-height: 320px;
}

.chat-msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  animation: chatFade 0.3s ease;
}
@keyframes chatFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  background: rgba(201,168,76,0.1);
  color: #fff;
  align-self: flex-start;
  border-bottom-right: 4px;
}
.chat-msg.user {
  background: var(--gold);
  color: var(--dark);
  align-self: flex-end;
  font-weight: 500;
}

.chat-options {
  padding: 0.5rem 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.chat-option-btn {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold-light);
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}
.chat-option-btn:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  color: #fff;
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 0.7rem 1rem;
  align-self: flex-start;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: typingDot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .chatbot-toggle {
    bottom: 5rem;
    bottom: calc(5rem + env(safe-area-inset-bottom, 0));
    left: 1rem;
  }
  .chatbot-window {
    bottom: 8.5rem;
    bottom: calc(8.5rem + env(safe-area-inset-bottom, 0));
    left: 1rem;
    right: 1rem;
    width: auto;
    max-height: 400px;
  }
  .chatbot-messages { max-height: 220px; }
}

/* ─── CUSTOM CURSOR GLOW (desktop) ─── */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 1002;
  transform-origin: right;
  transform: scaleX(0);
  transition: none;
}

/* ─── FORM SPOTLIGHT ─── */
.lead-form-wrap::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
  transition: left 0.3s, top 0.3s;
}
.lead-form-wrap > * {
  position: relative;
  z-index: 1;
}

/* ─── SCROLL TO TOP ─── */
.scroll-top-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 5rem;
  z-index: 997;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8,8,12,0.85);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  backdrop-filter: blur(10px);
}
.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .scroll-top-btn { display: none; }
}

/* ─── FULL-WIDTH IMAGE (PARALLAX) ─── */
.full-image {
  position: relative;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
  clip-path: inset(0);
}
.full-image img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.full-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,12,0.2) 0%, rgba(8,8,12,0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-image .overlay-content {
  text-align: center;
  color: #fff;
}
.full-image .overlay-content h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.full-image .overlay-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
