/* ==========================================================================
   DanCraft Interiors - Master Styling & Design System (Vanilla CSS + Modern Tokens)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-luxury: 'Playfair Display', Georgia, serif;

  /* Color Palette */
  --bg-dark: #030712;
  --bg-card: #0b1329;
  --bg-card-hover: #111d3d;
  --bg-surface: #0f172a;
  
  --gold-300: #fde047;
  --gold-400: #facc15;
  --gold-500: #eab308;
  --gold-600: #ca8a04;
  --gold-gradient: linear-gradient(135deg, #fef08a 0%, #eab308 50%, #ca8a04 100%);
  --gold-glow: 0 0 25px rgba(234, 179, 8, 0.35);

  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --emerald-500: #10b981;
  --emerald-400: #34d399;

  --border-gold: rgba(234, 179, 8, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --glass-bg: rgba(15, 23, 42, 0.82);
  --glass-border: rgba(234, 179, 8, 0.18);
  --glass-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--slate-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #0d1b38 0%, #030712 70%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}

.font-luxury {
  font-family: var(--font-luxury);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gold { color: var(--gold-400); }
.text-muted { color: var(--slate-400); }
.text-emerald { color: var(--emerald-400); }

/* Layout Helpers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-lg {
  padding: 6.5rem 0;
}

.grid { display: grid; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }

/* Badges & Tags */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald-400);
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--glass-shadow);
}

.glass-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(234, 179, 8, 0.12);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #030712;
  box-shadow: 0 4px 18px rgba(234, 179, 8, 0.35);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 26px rgba(234, 179, 8, 0.55);
}

.btn-outline {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-gold);
  color: var(--slate-100);
}

.btn-outline:hover {
  background: rgba(234, 179, 8, 0.15);
  border-color: var(--gold-400);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: scale(1.03);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(234, 179, 8, 0.15);
  transition: all 0.3s ease;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #030712;
  font-size: 1.35rem;
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-brand:hover .logo-icon {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(234, 179, 8, 0.65);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.1;
}

.brand-subtext {
  display: block;
  font-size: 0.68rem;
  color: var(--gold-400);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: -1px;
}

/* Nav Actions Container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-btn-call {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-gold);
  color: #ffffff;
}
.nav-btn-call:hover {
  background: rgba(234, 179, 8, 0.18);
  border-color: var(--gold-400);
  transform: translateY(-1px);
}

.nav-btn-visit {
  background: var(--gold-gradient);
  color: #030712;
  border: none;
  box-shadow: 0 4px 18px rgba(234, 179, 8, 0.4);
}
.nav-btn-visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(234, 179, 8, 0.6);
}

.call-text-mobile { display: none; }
.visit-text-mobile { display: none; }
.call-text-desktop { display: inline; }
.visit-text-desktop { display: inline; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-300);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-400);
  transition: width 0.25s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--slate-200);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(234, 179, 8, 0.12);
  color: var(--gold-300);
  transform: translateX(4px);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu-drawer {
  position: fixed;
  top: 4.5rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 4.5rem);
  background: rgba(3, 7, 18, 0.98);
  backdrop-filter: blur(25px);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 998;
  overflow-y: auto;
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--slate-300);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item .stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--gold-400);
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--slate-300);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.2);
}

/* Before / After Slider */
.ba-container {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-md);
  user-select: none;
  border: 1px solid var(--border-gold);
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold-400);
  box-shadow: 0 0 10px rgba(0,0,0,0.8);
  cursor: ew-resize;
}

.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  color: #030712;
  font-weight: bold;
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--slate-300);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--gold-400);
  color: #030712;
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-gold);
  color: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.875rem;
  animation: toastSlideIn 0.3s ease;
  max-width: 380px;
}

.toast.toast-success { border-color: var(--emerald-400); }
.toast.toast-error { border-color: #ef4444; }

@keyframes toastSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  text-decoration: none;
  transition: transform 0.25s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  transition: all 0.2s;
}

.back-to-top.show {
  display: flex;
}

/* Mobile Bottom Navigation */
.mob-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  z-index: 995;
  justify-content: space-around;
  align-items: center;
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
}

.mob-nav-item.active, .mob-nav-item:hover {
  color: var(--gold-400);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.75rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    color: var(--gold-400);
    font-size: 1.15rem;
  }
  .navbar-inner {
    height: 4.25rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    border-radius: 10px;
  }
  .brand-text {
    font-size: 1.25rem;
  }
  .brand-subtext {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }
  .nav-actions {
    gap: 0.45rem;
  }
  .nav-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    border-radius: 20px;
  }
  .call-text-desktop { display: none; }
  .call-text-mobile { display: inline; font-weight: 800; }
  .visit-text-desktop { display: none; }
  .visit-text-mobile { display: inline; font-weight: 800; }

  .mob-bottom-nav { display: flex; }
  body { padding-bottom: 4rem; }
  .hero { padding-top: 6.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
  .section { padding: 3.5rem 0; }
  .floating-actions { bottom: 5rem; left: 1rem; }
  .back-to-top { bottom: 5rem; right: 1rem; }
  #toast-container { bottom: 5rem; right: 1rem; }
}

@media (max-width: 400px) {
  .brand-subtext { display: none; }
  .logo-brand { gap: 0.4rem; }
  .nav-actions { gap: 0.35rem; }
  .nav-btn { padding: 0.4rem 0.65rem; font-size: 0.75rem; }
  .mobile-toggle { width: 36px; height: 36px; font-size: 1rem; }
}

/* ============================================================
   UNIQUE FEATURES STYLES
   ============================================================ */

/* Live Trust Ticker (Scrolling Marquee Banner) */
.trust-ticker-bar {
  background: linear-gradient(90deg, rgba(234,179,8,0.12) 0%, rgba(10,18,40,1) 20%, rgba(10,18,40,1) 80%, rgba(234,179,8,0.12) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.65rem 0;
  overflow: hidden;
  position: relative;
}
.trust-ticker-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.trust-ticker-bar:hover .trust-ticker-inner { animation-play-state: paused; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-200);
}
.ticker-item .dot { color: var(--gold-400); font-size: 1rem; }

/* Testimonial Cards */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-luxury);
  font-size: 5rem;
  color: var(--gold-500);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
}
.stars { color: var(--gold-400); font-size: 0.9rem; letter-spacing: 0.05em; }
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #030712;
  font-size: 1rem;
  flex-shrink: 0;
}

/* WhatsApp Sticky Widget */
.wa-sticky {
  position: fixed;
  bottom: 6.5rem;
  right: 1.25rem;
  z-index: 500;
}
@media (min-width: 769px) {
  .wa-sticky { bottom: 2rem; right: 1.5rem; }
}
.wa-sticky-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-sticky-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0); }
}
.wa-sticky-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(3,7,18,0.92);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.wa-sticky:hover .wa-sticky-label { opacity: 1; }

/* Material Transparency Pledge Section */
.pledge-card {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(234,179,8,0.07) 0%, rgba(15,23,42,0.9) 100%);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pledge-card:hover { transform: translateY(-2px); box-shadow: 0 8px 30px -10px rgba(234,179,8,0.2); }
.pledge-icon {
  width: 48px;
  height: 48px;
  background: rgba(234,179,8,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-400);
  flex-shrink: 0;
}

/* Anniversary Special Banner */
.promo-banner {
  background: linear-gradient(135deg, rgba(234,179,8,0.18) 0%, rgba(16,185,129,0.12) 100%);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.promo-badge {
  background: var(--gold-gradient);
  color: #030712;
  font-weight: 900;
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Live Stats Counter */
.stat-counter {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-400);
}

/* Floating Quick-Quote Panel (Sidebar CTA) */
.quick-quote-float {
  position: sticky;
  top: 90px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

