/* ========================================
   PDS WhatsApp Leads — Main Styles
   Green Primary Theme | Light/Dark Mode
   ======================================== */

/* === Bootstrap overrides: green is primary === */
:root,
[data-bs-theme] {
  --bs-primary: #16a34a;
  --bs-primary-rgb: 22,163,74;
  --bs-success: #16a34a;
  --bs-success-rgb: 22,163,74;
  --bs-info: #22c55e;
  --bs-info-rgb: 34,197,94;
  --bs-link-color: #16a34a;
  --bs-link-color-rgb: 22,163,74;
  --bs-link-hover-color: #15803d;
  --bs-link-hover-color-rgb: 21,128,61;
}

.btn-primary {
  --bs-btn-bg: #16a34a; --bs-btn-border-color: #16a34a;
  --bs-btn-hover-bg: #15803d; --bs-btn-hover-border-color: #15803d;
  --bs-btn-active-bg: #166534; --bs-btn-active-border-color: #166534;
  --bs-btn-disabled-bg: #16a34a; --bs-btn-disabled-border-color: #16a34a;
  color: #fff;
}
.btn-outline-primary {
  --bs-btn-color: #16a34a; --bs-btn-border-color: #16a34a;
  --bs-btn-hover-bg: #16a34a; --bs-btn-hover-border-color: #16a34a;
  --bs-btn-hover-color: #fff; --bs-btn-active-bg: #15803d;
}
.btn-info, .btn-success {
  --bs-btn-bg: #22c55e; --bs-btn-border-color: #22c55e;
  --bs-btn-hover-bg: #16a34a; --bs-btn-hover-border-color: #16a34a;
  color: #fff;
}
.btn-outline-success, .btn-outline-info {
  --bs-btn-color: #16a34a; --bs-btn-border-color: #16a34a;
  --bs-btn-hover-bg: #16a34a; --bs-btn-hover-border-color: #16a34a;
  --bs-btn-hover-color: #fff;
}

.text-primary  { color: #16a34a !important; }
.text-success  { color: #16a34a !important; }
.text-info     { color: #22c55e !important; }
.bg-primary    { background-color: #16a34a !important; }
.bg-success    { background-color: #16a34a !important; }
.bg-info       { background-color: #22c55e !important; }

/* Dark mode Bootstrap overrides */
[data-theme="dark"] .text-primary  { color: #4ade80 !important; }
[data-theme="dark"] .btn-outline-primary {
  --bs-btn-color: #4ade80; --bs-btn-border-color: #4ade80;
  --bs-btn-hover-bg: #4ade80; --bs-btn-hover-color: #000;
  --bs-btn-hover-border-color: #4ade80;
}
[data-theme="dark"] .btn-primary {
  --bs-btn-bg: #22c55e; --bs-btn-border-color: #22c55e;
  --bs-btn-hover-bg: #4ade80; --bs-btn-hover-border-color: #4ade80;
  --bs-btn-color: #000;
}
[data-theme="dark"] .bg-primary { background-color: #16a34a !important; }

/* ==========================================
   CSS Custom Properties
   ========================================== */
:root {
  /* Green primary palette */
  --primary:        #16a34a;
  --primary-light:  #22c55e;
  --primary-dark:   #15803d;
  --primary-deep:   #166534;
  --primary-glow:   rgba(22, 163, 74, 0.15);
  --primary-glow-strong: rgba(22, 163, 74, 0.25);

  /* Accent / WhatsApp green highlight */
  --accent:         #25d366;
  --accent-dark:    #1da851;

  /* Semantic */
  --success:  #16a34a;
  --warning:  #f0b429;
  --danger:   #e53e3e;
  --info:     #0ea5e9;

  /* Light theme surfaces */
  --bg:         #ffffff;
  --surface:    #f0fdf4;      /* very light green tint */
  --surface-2:  #dcfce7;      /* second-level surface */
  --light:      #f0fdf4;
  --dark:       #000000;

  /* Text */
  --text:       #111827;
  --text-muted: #6b7280;

  /* Borders & shadows */
  --border:     #d1fae5;
  --shadow:     0 4px 6px -1px rgba(22,163,74,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 15px -3px rgba(22,163,74,0.12), 0 4px 6px -4px rgba(0,0,0,0.08);
  --shadow-green: 0 0 0 3px rgba(22,163,74,0.25);

  /* Shape */
  --radius:    12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* ==========================================
   Reset & Base
   ========================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; height: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--primary-dark); line-height: 1.3; }

.section-title   { font-size: 2.25rem; margin-bottom: 1rem; color: var(--primary-deep); }
.section-subtitle { color: var(--text-muted); font-size: 1.125rem; max-width: 600px; margin: 0 auto 2rem; }

/* ==========================================
   Buttons
   ========================================== */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none; color: #fff; padding: 0.75rem 2rem; border-radius: var(--radius-sm);
  font-weight: 600; transition: var(--transition); box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #fff; background: linear-gradient(135deg, var(--primary-dark), var(--primary-deep)); }

.btn-outline-primary {
  border: 2px solid var(--primary); color: var(--primary); background: transparent;
  padding: 0.75rem 2rem; border-radius: var(--radius-sm); font-weight: 600; transition: var(--transition);
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.btn-dark { background: #111827; border: none; color: #fff; padding: 0.75rem 2rem; border-radius: var(--radius-sm); font-weight: 600; }
.btn-dark:hover { background: #1f2937; color: #fff; }

/* ==========================================
   Navbar
   ========================================== */
.navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border);
  padding: 0.875rem 0;
  box-shadow: 0 1px 8px rgba(22,163,74,0.08);
  position: relative;
  z-index: 1050;
}
.navbar-brand { font-weight: 800; font-size: 1.5rem; color: var(--primary) !important; }
.navbar-brand span { color: var(--primary-dark); }
.nav-link { font-weight: 500; color: var(--text) !important; padding: 0.5rem 1rem !important; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

.dropdown-menu { border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); z-index: 1055; }
.dropdown-item { font-weight: 500; padding: 0.6rem 1.2rem; }
.dropdown-item:hover { background: var(--surface); color: var(--primary); }

/* ==========================================
   Hero
   ========================================== */
.hero {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff; padding: 6rem 0 5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -15%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%); border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, transparent 65%); border-radius: 50%;
}
.hero h1 { color: #fff; font-size: 3.5rem; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.hero .lead { color: rgba(255,255,255,0.9); font-size: 1.25rem; }
.hero .badge {
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1px solid rgba(255,255,255,0.3); font-weight: 600;
  padding: 0.5rem 1rem; border-radius: 100px; backdrop-filter: blur(4px);
}

/* ==========================================
   Cards
   ========================================== */
.card {
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition); background: #fff;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.card-body { padding: 2rem; }

.icon-box {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px var(--primary-glow-strong);
}

/* ==========================================
   Pricing
   ========================================== */
.pricing-card { border: 2px solid var(--border); border-radius: var(--radius); padding: 2.5rem; text-align: center; transition: var(--transition); }
.pricing-card.featured { border-color: var(--primary); position: relative; box-shadow: var(--shadow-lg); }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 1rem; border-radius: 100px;
}
.pricing-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.price { font-size: 3rem; font-weight: 800; color: var(--primary); }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

/* ==========================================
   Steps
   ========================================== */
.step { text-align: center; padding: 2rem; }
.step-number {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-weight: 800; font-size: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px var(--primary-glow-strong);
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonial-card { background: var(--surface); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); }
.testimonial-card .stars { color: var(--warning); margin-bottom: 1rem; }

/* ==========================================
   FAQ
   ========================================== */
.accordion-button:not(.collapsed) { background: var(--primary-glow); color: var(--primary-dark); box-shadow: none; font-weight: 600; }
.accordion-button:focus { box-shadow: none; border-color: var(--primary); }
.accordion-button::after { filter: none; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.75rem; overflow: hidden; }

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
  color: rgba(255,255,255,0.75); margin-top: auto;
}
.footer a:hover { color: #fff !important; }

/* ==========================================
   Forms
   ========================================== */
.form-control, .form-select {
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  transition: var(--transition); background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 0.2rem var(--primary-glow);
}
.form-label { font-weight: 600; color: var(--primary-dark); margin-bottom: 0.5rem; }

/* Input group addon green */
.input-group-text {
  background: var(--surface); border-color: var(--border); color: var(--primary);
}

/* ==========================================
   Auth Pages
   ========================================== */
.auth-page {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  position: relative;
}
.auth-page::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.auth-card {
  background: #fff; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  padding: 2.5rem; width: 100%; max-width: 480px; margin: 0 auto; position: relative; z-index: 1;
}
.auth-card h2 { text-align: center; margin-bottom: 0.5rem; color: var(--primary-deep); }
.auth-card .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 2rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; color: var(--text-muted); }

/* ==========================================
   Dashboard / Sidebar
   ========================================== */
.dashboard-page { background: var(--surface); min-height: 100vh; }

.sidebar {
  background: linear-gradient(180deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
  border-right: none; min-height: 100vh; position: fixed; width: 260px;
  padding: 1.5rem; overflow-y: auto;
}
.sidebar-brand { font-weight: 800; font-size: 1.25rem; color: #fff !important; margin-bottom: 2rem; display: block; }
.sidebar-brand span { color: rgba(255,255,255,0.6); font-weight: 400; }

.sidebar-menu { list-style: none; padding: 0; }
.sidebar-menu li { margin-bottom: 0.2rem; }
.sidebar-menu a {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1rem;
  border-radius: var(--radius-sm); color: rgba(255,255,255,0.75); font-weight: 500;
  transition: var(--transition); text-decoration: none;
}
.sidebar-menu a:hover, .sidebar-menu a.active {
  background: rgba(255,255,255,0.12); color: #fff;
}
.sidebar-menu a.active { background: rgba(255,255,255,0.18); font-weight: 600; }
.sidebar-menu i { width: 20px; text-align: center; }

.main-content { margin-left: 260px; padding: 2rem; }

/* ==========================================
   Stat Cards
   ========================================== */
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid var(--border); display: flex; align-items: center; gap: 1rem;
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }

.stat-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.375rem;
}
.stat-icon.green  { background: var(--primary-glow); color: var(--primary); }
.stat-icon.teal   { background: rgba(20,184,166,0.1); color: #0d9488; }
.stat-icon.blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }
.stat-icon.orange { background: rgba(245,158,11,0.1); color: #d97706; }
.stat-icon.red    { background: rgba(239,68,68,0.1);  color: #dc2626; }

.stat-value { font-size: 1.75rem; font-weight: 800; color: var(--primary-dark); line-height: 1; }
.stat-label { color: var(--text-muted); font-size: 0.875rem; }

/* ==========================================
   Tables
   ========================================== */
.table-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.table-card table { margin-bottom: 0; }
.table-card th {
  background: var(--surface); font-weight: 700; color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-glow-strong); padding: 1rem; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.table-card td { padding: 1rem; vertical-align: middle; }
.table-card tr:hover { background: var(--surface); }

.badge { padding: 0.45em 0.8em; border-radius: 100px; font-weight: 600; font-size: 0.75rem; }

/* ==========================================
   Notifications
   ========================================== */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; }

/* ==========================================
   Section backgrounds
   ========================================== */
.section-light { background: var(--surface); }
.section-green {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-dark));
  color: #fff;
}
.section-green h2, .section-green h3, .section-green h4 { color: #fff; }

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow-strong); }
  50%       { box-shadow: 0 0 0 8px transparent; }
}
.pulse-green { animation: pulse-green 2s ease infinite; }

/* ==========================================
   Utility helpers
   ========================================== */
.text-green    { color: var(--primary) !important; }
.text-green-dark { color: var(--primary-dark) !important; }
.bg-green-soft { background: var(--surface) !important; }
.bg-green      { background: var(--primary) !important; color: #fff; }
.border-green  { border-color: var(--primary) !important; }

/* Highlight / callout boxes */
.callout-green {
  background: var(--surface); border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1rem 1.25rem;
}

/* ==========================================
   Consent Toggle
   ========================================== */
.consent-toggle { width: 52px; height: 28px; border-radius: 14px; background: var(--border); position: relative; cursor: pointer; transition: var(--transition); }
.consent-toggle.active { background: var(--primary); }
.consent-toggle::after {
  content: ''; position: absolute; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; top: 3px; left: 3px; transition: var(--transition); box-shadow: var(--shadow);
}
.consent-toggle.active::after { left: 27px; }

/* ==========================================
   Badges & Tags
   ========================================== */
.premium-badge { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; text-transform: uppercase; }
.verified-badge { color: var(--primary); font-size: 0.875rem; }
.badge-green { background: var(--primary-glow); color: var(--primary-dark); border: 1px solid rgba(22,163,74,0.3); }

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 991px) {
  .sidebar { transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1040; }
  .sidebar.show { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 1.75rem; }
}

/* ==========================================
   Theme Toggle Button
   ========================================== */
.theme-toggle-btn {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  border-radius: 20px; padding: 0.35rem 0.75rem; cursor: pointer;
  font-size: 0.85rem; transition: all 0.2s ease; display: flex; align-items: center; gap: 5px;
}
.theme-toggle-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Sidebar-context toggle (on dark green sidebar) */
.sidebar .theme-toggle-btn {
  border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7);
}
.sidebar .theme-toggle-btn:hover { border-color: #fff; color: #fff; }

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
  --bg:         #000000;
  --surface:    #0d1a10;      /* dark green-tinted surface */
  --surface-2:  #111f14;
  --light:      #0d1a10;
  --text:       #e5e7eb;
  --text-muted: #9ca3af;
  --border:     #1a3020;
  --shadow:     0 4px 6px -1px rgba(0,0,0,0.5), 0 2px 4px -2px rgba(0,0,0,0.5);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,0.6), 0 4px 6px -4px rgba(0,0,0,0.5);
  --primary-glow: rgba(34,197,94,0.12);
  --primary-glow-strong: rgba(34,197,94,0.2);
}

[data-theme="dark"] body { background: #000000; color: #e5e7eb; }

[data-theme="dark"] h1, [data-theme="dark"] h2,
[data-theme="dark"] h3, [data-theme="dark"] h4,
[data-theme="dark"] h5, [data-theme="dark"] h6 { color: #d1fae5; }

[data-theme="dark"] .section-title { color: #86efac; }

[data-theme="dark"] .navbar {
  background: rgba(0,0,0,0.97) !important;
  border-color: #1a3020 !important;
  box-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
[data-theme="dark"] .navbar-brand { color: #4ade80 !important; }
[data-theme="dark"] .nav-link { color: #d1fae5 !important; }
[data-theme="dark"] .nav-link:hover, [data-theme="dark"] .nav-link.active { color: #4ade80 !important; }
[data-theme="dark"] .navbar-toggler-icon { filter: invert(1); }

[data-theme="dark"] .dropdown-menu { background: #0d1a10; border-color: #1a3020; }
[data-theme="dark"] .dropdown-item { color: #d1d5db; }
[data-theme="dark"] .dropdown-item:hover { background: #111f14; color: #4ade80; }

[data-theme="dark"] .card,
[data-theme="dark"] .stat-card { background: #0d1a10 !important; border-color: #1a3020 !important; color: #e5e7eb; }
[data-theme="dark"] .card-header { background: #0d1a10 !important; border-color: #1a3020 !important; }

[data-theme="dark"] .table { color: #e5e7eb; }
[data-theme="dark"] .table th { background: #000000; color: #d1fae5; border-color: #1a3020; }
[data-theme="dark"] .table td { border-color: #1a3020; }
[data-theme="dark"] .table-card { background: #0d1a10; border-color: #1a3020; }
[data-theme="dark"] .table-card th { background: #000000; color: #d1fae5; border-color: #1a3020; }
[data-theme="dark"] .table-card tr:hover { background: #111f14; }

[data-theme="dark"] .form-control, [data-theme="dark"] .form-select {
  background: #000000; border-color: #1a3020; color: #e5e7eb;
}
[data-theme="dark"] .form-control:focus, [data-theme="dark"] .form-select:focus {
  background: #000000; border-color: #22c55e; box-shadow: 0 0 0 0.2rem rgba(34,197,94,0.2);
}
[data-theme="dark"] .form-control::placeholder { color: #4b5563; }
[data-theme="dark"] .form-label { color: #86efac; }
[data-theme="dark"] .input-group-text { background: #0d1a10; border-color: #1a3020; color: #4ade80; }

[data-theme="dark"] .modal-content { background: #0d1a10; border-color: #1a3020; color: #e5e7eb; }
[data-theme="dark"] .modal-header, [data-theme="dark"] .modal-footer { border-color: #1a3020; }

[data-theme="dark"] .auth-card { background: #0d1a10; }
[data-theme="dark"] .auth-card h2 { color: #86efac; }

[data-theme="dark"] .sidebar { background: linear-gradient(180deg, #000000 0%, #0a1a0a 100%) !important; border-color: #1a3020; }
[data-theme="dark"] .sidebar-menu a { color: rgba(209,250,229,0.6); }
[data-theme="dark"] .sidebar-menu a:hover, [data-theme="dark"] .sidebar-menu a.active { background: rgba(74,222,128,0.12); color: #4ade80; }

[data-theme="dark"] .stat-icon.green  { background: rgba(74,222,128,0.1); color: #4ade80; }
[data-theme="dark"] .stat-value { color: #86efac; }
[data-theme="dark"] .stat-label { color: #9ca3af; }

[data-theme="dark"] .pricing-card { background: #0d1a10; border-color: #1a3020; color: #e5e7eb; }
[data-theme="dark"] .pricing-card.featured { border-color: #22c55e; box-shadow: 0 0 0 1px #22c55e; }
[data-theme="dark"] .price { color: #4ade80; }

[data-theme="dark"] .footer { background: linear-gradient(135deg, #000000 0%, #0a1a0a 100%); }
[data-theme="dark"] .footer-bottom { border-color: rgba(74,222,128,0.15); }

[data-theme="dark"] .section-light, [data-theme="dark"] .bg-light { background: #0d1a10 !important; }
[data-theme="dark"] .bg-white, [data-theme="dark"] .bg-white { background: #0d1a10 !important; }
[data-theme="dark"] .text-dark { color: #e5e7eb !important; }
[data-theme="dark"] .text-muted { color: #9ca3af !important; }
[data-theme="dark"] .border { border-color: #1a3020 !important; }

[data-theme="dark"] .list-group-item { background: #0d1a10; border-color: #1a3020; color: #e5e7eb; }
[data-theme="dark"] .accordion-button { background: #0d1a10; color: #d1fae5; }
[data-theme="dark"] .accordion-button:not(.collapsed) { background: rgba(34,197,94,0.12); color: #4ade80; }
[data-theme="dark"] .accordion-body { background: #0d1a10; color: #d1d5db; }
[data-theme="dark"] .accordion-item { border-color: #1a3020; }

[data-theme="dark"] .testimonial-card { background: #0d1a10; border-color: #1a3020; }
[data-theme="dark"] .table-card { background: #0d1a10 !important; }

[data-theme="dark"] .alert { border-color: #1a3020; }
[data-theme="dark"] .badge.bg-light { background: #1a3020 !important; color: #d1fae5; }
[data-theme="dark"] .callout-green { background: #111f14; border-color: #22c55e; }
[data-theme="dark"] .badge-green { background: rgba(34,197,94,0.15); color: #4ade80; }

[data-theme="dark"] .theme-toggle-btn { border-color: #1a3020; color: #9ca3af; }
[data-theme="dark"] .theme-toggle-btn:hover { border-color: #22c55e; color: #22c55e; }

[data-theme="dark"] .consent-toggle { background: #1a3020; }
[data-theme="dark"] .consent-toggle.active { background: #16a34a; }
[data-theme="dark"] .chart-placeholder { background: linear-gradient(135deg, #0d1a10, #000000); color: #4b5563; }

/* Smooth theme transition */
html { transition: background 0.3s ease, color 0.3s ease; }
* { transition: background-color 0.3s ease, border-color 0.3s ease, color 0.2s ease; }
