/* global.css — Variables, reset, shared styles */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ══════════════════════════════
   SERVICE MODALS
══════════════════════════════ */
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.svc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.svc-modal-overlay.is-open {
  display: flex;
}

.svc-modal-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid rgba(124,92,62, 0.35);
  border-radius: 16px;
  padding: 2.25rem 2rem 2rem;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(124,92,62, 0.15);
  animation: modalFadeIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Close button */
.svc-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.svc-modal-close:hover {
  background: rgba(124,92,62, 0.18);
  color: var(--text-primary);
}

/* Header row */
.svc-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 2.5rem;
}

.svc-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(124,92,62, 0.12);
  border: 1px solid rgba(124,92,62, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-modal-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 0.25rem;
}

.svc-modal-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Description */
.svc-modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Sections */
.svc-modal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.svc-modal-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.25rem;
}

.svc-modal-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.svc-modal-list li {
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.5;
  padding-left: 1.3rem;
  position: relative;
}

.svc-modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.svc-modal-list--use li::before {
  background: var(--purple);
}

/* CTA button */
.svc-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--purple), #C73C30);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.svc-modal-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,92,62, 0.4);
}

/* Light mode */
body.light-mode .svc-modal-card {
  background: #ffffff;
  border-color: rgba(124,92,62, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(124,92,62, 0.1);
}

body.light-mode .svc-modal-close {
  background: rgba(0, 0, 0, 0.04);
  color: #6b7280;
}

body.light-mode .svc-modal-close:hover {
  background: rgba(124,92,62, 0.1);
  color: #1A1207;
}

body.light-mode .svc-modal-section {
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .svc-modal-list li {
  color: #1A1207;
}

body.light-mode .svc-modal-desc {
  color: #4b5563;
}

/* Mobile */
@media (max-width: 600px) {
  .svc-modal-card {
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 12px;
  }

  .svc-modal-title { font-size: 1.05rem; }
  .svc-modal-desc  { font-size: 0.85rem; }
  .svc-modal-list li { font-size: 0.84rem; }
}

/* ── Global grid overflow safety ── */
.container,
[class*="-grid"],
[class*="-track"] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

:root {
  /* Legacy aliases (kept for backward compat) */
  --bg:        #1A1207;
  --text:      #F4F1EC;
  --muted:     #A89880;

  /* Semantic tokens — dark mode defaults */
  --bg-primary:   #1A1207;
  --bg-secondary: #2A1E10;
  --bg-card:      rgba(255,255,255,0.05);
  --text-primary: #F4F1EC;
  --text-muted:   #A89880;
  --border-color: rgba(168,120,80,0.25);

  /* Accent */
  --purple:    #7C5C3E;
  --cyan:      #E5483B;

  /* Layout */
  --radius-card:   12px;
  --radius-btn:    8px;
  --transition:    all 0.3s ease;
  --font: system-ui, -apple-system, sans-serif;
}

/* ── Light mode overrides ── */
body.light-mode {
  --bg:           #F4F1EC;
  --text:         #1A1207;
  --muted:        #6B5C45;
  --bg-primary:   #F4F1EC;
  --bg-secondary: #EDE9E1;
  --bg-card:      #FDFCFA;
  --text-primary: #1A1207;
  --text-muted:   #6B5C45;
  --border-color: rgba(124,92,62,0.20);
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* Shared button styles */
.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--purple);
  color: var(--text);
}

.btn-primary:hover {
  background: #C73C30;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
}

.btn-outline:hover {
  background: var(--cyan);
  color: #1A1207;
  transform: translateY(-1px);
}

/* Light mode: outline button uses purple for contrast */
body.light-mode .btn-outline {
  color: #7C5C3E;
  border-color: #7C5C3E;
}

body.light-mode .btn-outline:hover {
  background: #7C5C3E;
  color: #ffffff;
}

/* ══════════════════════════════
   SECTION BACKGROUNDS
══════════════════════════════ */
section,
.services,
.how-it-works,
.testimonials,
.faq,
.contact,
.footer {
  background-color: var(--bg-primary);
}

/* ══════════════════════════════
   GLOBAL HOVER CONTRAST SAFETY
   Dark bg + white text on all
   card and step hover states.
══════════════════════════════ */

/* Dark background on every hovered card (incl. step-card) */
[class*="card"]:hover {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

/* All child text inherits unless explicitly overridden below */
[class*="card"]:hover * {
  color: inherit;
}

/* ── Accent color overrides (must NOT become white) ── */

/* review title/company → purple */
[class*="card"]:hover .review-role { color: #A87850; }

/* stars → gold */
[class*="card"]:hover .review-stars { color: #f59e0b; }

/* step number → cyan */
[class*="card"]:hover .step-num { color: var(--cyan); }

/* service card arrow → cyan */
[class*="card"]:hover .card-arrow { color: var(--cyan); }

/* SVG strokes are set via stroke attribute in cards.css — not color */

/* ══════════════════════════════
   SCROLL REVEAL SYSTEM
   Add class="reveal" to any
   section / card to animate on
   viewport entry.
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children (cards inside a grid) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: opacity, transform;
}

.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.47s; }
.reveal-stagger.is-visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.54s; }
.reveal-stagger.is-visible > *:nth-child(9) { opacity: 1; transform: none; transition-delay: 0.61s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════ */
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(124,92,62, 0.3);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
  animation: cookieSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 260px;
}

.cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.cookie-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cookie-text {
  color: #d1d5db;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.4;
}

.cookie-link,
.cookie-policy-link {
  color: #E5483B;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.cookie-link:hover,
.cookie-policy-link:hover { color: #A87850; }

.cookie-site-link {
  color: #A87850;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.cookie-site-link:hover { color: #c4b5fd; }

body.light-mode .cookie-site-link { color: #7C5C3E; }
body.light-mode .cookie-site-link:hover { color: #C73C30; }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 0.55rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  background: linear-gradient(135deg, #7C5C3E, #C73C30);
  color: #ffffff;
  transition: opacity 0.2s, transform 0.2s;
}

.cookie-btn-accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-reject {
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-btn);
  cursor: pointer;
  background: transparent;
  color: #9ca3af;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-btn-reject:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* Light mode */
body.light-mode .cookie-banner {
  background: rgba(244, 241, 236, 0.98);
  border-top-color: rgba(124,92,62, 0.2);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
}

body.light-mode .cookie-text { color: #4A3828; }

body.light-mode .cookie-btn-accept {
  background: linear-gradient(135deg, #C73C30, #E5483B);
  color: #ffffff;
}

body.light-mode .cookie-btn-reject {
  border: 1.5px solid #7C5C3E !important;
  color: #1A1207 !important;
  background: transparent !important;
}

body.light-mode .cookie-btn-reject:hover {
  border-color: #4A3020 !important;
  color: #1A1207 !important;
  background: rgba(124,92,62,0.08) !important;
}

@media (max-width: 600px) {
  .cookie-inner {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }
  .cookie-left { min-width: unset; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ══════════════════════════════
   SCROLL-TO-TOP BUTTON
══════════════════════════════ */
#scrollTopBtn {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: #7C5C3E;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#scrollTopBtn.is-visible {
  display: flex;
}

#scrollTopBtn svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

/* ══════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════ */
.wa-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.4s ease infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
  animation: none;
}

.wa-icon {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  flex-shrink: 0;
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  white-space: nowrap;
  background: rgba(15, 15, 26, 0.92);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-50%) translateX(6px);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(15, 15, 26, 0.92);
}

.wa-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
}

body.light-mode .wa-tooltip {
  background: rgba(30, 30, 40, 0.9);
}
body.light-mode .wa-tooltip::after {
  border-left-color: rgba(30, 30, 40, 0.9);
}

/* ══════════════════════════════
   LIGHT MODE — SECTION FIXES
   Override every hardcoded dark
   rgba/color that breaks in light.
══════════════════════════════ */

/* ── Hero ── */
body.light-mode .scroll-mouse {
  border-color: rgba(0, 0, 0, 0.18);
}
body.light-mode .stat-divider {
  background: rgba(0, 0, 0, 0.12);
}
/* White spark particles are invisible on light bg */
body.light-mode .particle:nth-child(11),
body.light-mode .particle:nth-child(12) {
  background: #94a3b8;
}

/* ── Service cards ── */
body.light-mode .service-card {
  border-color: var(--border-color);
  background: #ffffff;
}
body.light-mode .service-card:hover {
  background: #FAF7F2;
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(124,92,62, 0.14), 0 2px 8px rgba(0,0,0,0.06);
}
body.light-mode .service-card:hover .card-title { color: #1A1207; }
body.light-mode .service-card:hover .card-desc  { color: #4A3828; }
body.light-mode .service-card:hover .card-icon svg { stroke: var(--purple); filter: none; }

/* ── Step cards ── */
body.light-mode .step-icon {
  background: rgba(124,92,62, 0.07);
  border-color: rgba(124,92,62, 0.18);
}
body.light-mode .step-card:hover {
  background: #FAF7F2;
}
body.light-mode .step-card:hover .step-title { color: #1A1207; }
body.light-mode .step-card:hover .step-desc  { color: #4A3828; }
body.light-mode .step-card:hover .step-icon svg { stroke: var(--purple); filter: none; }
/* Mobile step separator */
@media (max-width: 768px) {
  body.light-mode .step-card {
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }
}

/* ── Review cards ── */
body.light-mode .review-card {
  border-color: var(--border-color);
  background: #ffffff;
}
body.light-mode .review-card--featured {
  background: rgba(229,72,59, 0.06);
}
body.light-mode .review-card:hover {
  background: #FAF7F2;
  color: var(--text-primary);
  box-shadow: 0 8px 28px rgba(124,92,62, 0.12), 0 2px 8px rgba(0,0,0,0.06);
}
body.light-mode .review-card:hover .review-text { color: #4A3828; }
body.light-mode .review-card:hover .review-name { color: #1A1207; }
body.light-mode .review-author {
  border-top-color: rgba(0, 0, 0, 0.08);
}
body.light-mode .review-card--featured:hover {
  background: #FFF8F5;
  border-color: rgba(229,72,59, 0.45);
}

/* ── Pricing cards ── */
body.light-mode .pricing-card {
  background: #ffffff;
}
body.light-mode .pricing-card:hover {
  background: #FAF7F2;
  color: var(--text-primary);
}
body.light-mode .pricing-cta--outline {
  border-color: rgba(124,92,62, 0.35);
}

/* ── FAQ ── */
body.light-mode .faq-item {
  background: #ffffff;
  border-color: var(--border-color);
}
body.light-mode .faq-question:hover {
  background: rgba(124,92,62, 0.04);
}
body.light-mode .faq-item.is-open .faq-question {
  background: rgba(124,92,62, 0.06);
}
body.light-mode .faq-answer-inner {
  border-top-color: var(--border-color);
}

/* ── Contact form ── */
body.light-mode .contact-form {
  background: transparent;
}

/* ── Footer ── */
body.light-mode .footer {
  background-color: #EDE9E1;
  border-top-color: rgba(124,92,62, 0.25);
}
body.light-mode .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.1);
}
body.light-mode .social-link {
  background: #ffffff;
  border-color: var(--border-color);
  color: #4A3828;
}
body.light-mode .social-link:hover {
  background: rgba(124,92,62, 0.1);
  color: #1A1207;
}
body.light-mode .newsletter-input {
  background: #ffffff;
  border-color: var(--border-color);
  color: var(--text-primary);
}

/* ── Global card hover reset (prevent inherit cascade) ── */
body.light-mode [class*="card"]:hover {
  color: var(--text-primary);
}
body.light-mode [class*="card"]:hover * {
  color: inherit;
}
/* Re-apply accent overrides that must NOT inherit */
body.light-mode [class*="card"]:hover .review-role   { color: #7C5C3E; }
body.light-mode [class*="card"]:hover .review-stars  { color: #f59e0b; }
body.light-mode [class*="card"]:hover .step-num      { color: var(--cyan); }
body.light-mode [class*="card"]:hover .card-arrow    { color: var(--purple); }

/* ── btn text color fix ── */
.btn-primary,
.btn-glow,
[class*="btn"]:not(.btn-outline),
.btn-primary span,
.btn-glow span,
.btn-glow *,
.nav-cta,
.svc-modal-cta,
.article-cta-btn {
  color: #ffffff !important;
}

/* ══════════════════════════════
   LIGHT MODE — TEXT VISIBILITY
   Prevent white-on-white
══════════════════════════════ */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode p,
body.light-mode li,
body.light-mode span:not([class*="gradient"]):not([class*="cyan"]):not([class*="purple"]):not([class*="badge"]):not([class*="btn"]):not([class*="cta"]):not([class*="nav-cta"]):not([class*="modal-cta"]):not([class*="more-btn"]) {
  color: #1A1207;
}

body.light-mode .btn-outline,
body.light-mode .btn-ghost {
  color: #7C5C3E !important;
  border-color: #7C5C3E !important;
}

/* ── Light mode text fixes ── */
body.light-mode .footer-heading,
body.light-mode .footer-col-title,
body.light-mode .footer h2,
body.light-mode .footer h3,
body.light-mode .footer h4,
body.light-mode .footer p,
body.light-mode .footer span,
body.light-mode .footer li,
body.light-mode .footer a:not(.btn) {
  color: #1A1207 !important;
}

body.light-mode .section-tag,
body.light-mode .section-header h2,
body.light-mode .section-header h3,
body.light-mode .section-header p {
  color: #1A1207 !important;
}

body.light-mode .blog-more-btn,
body.light-mode .blog-cta-btn,
body.light-mode [class*="more-btn"],
body.light-mode [class*="cta-btn"] {
  background: #7C5C3E !important;
  color: #ffffff !important;
  border-color: #7C5C3E !important;
}

/* ── Dark mode heading visibility ── */
body:not(.light-mode) h1,
body:not(.light-mode) h2,
body:not(.light-mode) h3,
body:not(.light-mode) h4,
body:not(.light-mode) .hero-title,
body:not(.light-mode) .section-title,
body:not(.light-mode) .hero-heading,
body:not(.light-mode) [class*="title"],
body:not(.light-mode) [class*="heading"] {
  color: #F4F1EC !important;
}

body:not(.light-mode) p,
body:not(.light-mode) li {
  color: #A89880;
}

/* ── Dark mode footer fixes ── */
body:not(.light-mode) .footer-heading,
body:not(.light-mode) .footer-col-title,
body:not(.light-mode) .footer h2,
body:not(.light-mode) .footer h3,
body:not(.light-mode) .footer h4 {
  color: #F4F1EC !important;
}

body:not(.light-mode) .footer p,
body:not(.light-mode) .footer span,
body:not(.light-mode) .footer li,
body:not(.light-mode) .footer a:not(.btn) {
  color: #A89880 !important;
}
