/*
Theme Name: LeanWiseAI Child
Theme URI: https://leanwiseai.com
Description: Child theme of Astra for LeanWiseAI website
Author: LeanWiseAI
Template: astra
Version: 1.0.2
*/

/* ========================================
   FONT LOADING - Messina Sans
   ========================================

   Messina Sans is a commercial font. To use it:
   1. Purchase/download Messina Sans font files (.woff2, .woff)
   2. Upload to: /assets/fonts/messina-sans/
   3. Uncomment @font-face declarations below
   4. Current fallback: System fonts (similar to Messina Sans)

*/

/*
@font-face {
  font-family: 'Messina Sans';
  src: url('./assets/fonts/messina-sans/MessinaSans-Regular.woff2') format('woff2'),
       url('./assets/fonts/messina-sans/MessinaSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Messina Sans';
  src: url('./assets/fonts/messina-sans/MessinaSans-SemiBold.woff2') format('woff2'),
       url('./assets/fonts/messina-sans/MessinaSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Messina Sans';
  src: url('./assets/fonts/messina-sans/MessinaSans-Bold.woff2') format('woff2'),
       url('./assets/fonts/messina-sans/MessinaSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*/

/* ========================================
   BRAND IDENTITY - CSS VARIABLES
   ======================================== */

:root {
  /* Primary Colors - Từ Logo LEANWISE AI */
  --color-primary:       #1A4D7E;   /* Xanh navy chính (trái logo) */
  --color-primary-dark:  #0F3A5F;   /* Hover state - navy đậm hơn */
  --color-primary-light: #E6F2F8;   /* Background highlights */
  --color-accent:        #14B8A6;   /* Xanh teal (phải logo) */
  --color-accent-dark:   #0D9488;   /* Teal đậm hơn */

  /* Background Colors - LIGHT THEME */
  --color-bg-light:      #FFFFFF;   /* Nền trắng chính */
  --color-bg-gray:       #F8F9FA;   /* Background xám nhẹ cho sections */
  --color-bg-card:       #FFFFFF;   /* Card background - trắng */

  /* Text Colors - DARK TEXT */
  --color-text-dark:     #0F1729;   /* Chữ chính - tối */
  --color-text-gray:     #4B5563;   /* Chữ phụ - xám */
  --color-text-muted:    #9CA3AF;   /* Chữ muted - xám nhạt */

  /* Border & Divider */
  --color-border:        #E5E7EB;   /* Border nhẹ */
  --color-border-gray:   #D1D5DB;   /* Border đậm hơn */

  /* Gradient - Từ Logo */
  --color-gradient:      linear-gradient(90deg, #1A4D7E 0%, #14B8A6 100%);

  /* Typography Scale */
  --font-family:       'Messina Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-base:    16px;
  --font-size-lg:      18px;
  --font-size-h1:      56px;
  --font-size-h2:      48px;
  --font-size-h3:      36px;
  --font-size-button:  16px;

  --font-weight-normal:  400;
  --font-weight-medium:  500;
  --font-weight-semibold:600;
  --font-weight-bold:    700;

  --line-height-base:  1.6;
  --line-height-tight: 1.2;

  /* Spacing System (8px base) */
  --spacing-xs:  8px;
  --spacing-sm:  16px;
  --spacing-md:  24px;
  --spacing-lg:  32px;
  --spacing-xl:  48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 80px;
  --spacing-4xl: 120px;

  /* Border Radius */
  --radius-button: 8px;
  --radius-card:   12px;

  /* Shadows - Light Theme */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 400ms ease-in-out;
}

/* ========================================
   TEXT SELECTION
   ======================================== */

::selection {
  background-color: #B3D9F2;  /* Xanh dương nhạt */
  color: #0F1729;              /* Chữ tối để dễ đọc */
}

::-moz-selection {
  background-color: #B3D9F2;  /* Xanh dương nhạt - Firefox */
  color: #0F1729;
}

/* ========================================
   BASE TYPOGRAPHY
   ======================================== */

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-gray);
  background-color: var(--color-bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  line-height: var(--line-height-tight);
  color: var(--color-text-dark);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-semibold);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
}

/* ========================================
   BLOG POST STYLES
   ======================================== */

/* Single Post Title */
.single-post .entry-title,
.single .entry-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  max-width: 900px;
}

/* Post Meta (Category, Author, Date) */
.single-post .entry-meta,
.single .entry-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.entry-meta a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.entry-meta a:hover {
  color: var(--color-primary-dark);
}

.entry-meta .sep {
  color: var(--color-border-gray);
}

/* Post Content */
.single-post .entry-content,
.single .entry-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-gray);
  max-width: 800px;
}

.entry-content p {
  margin-bottom: 24px;
}

.entry-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.entry-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--color-text-dark);
}

/* Responsive Blog Post */
@media (max-width: 768px) {
  .single-post .entry-title,
  .single .entry-title {
    font-size: 32px;
  }

  .single-post .entry-content,
  .single .entry-content {
    font-size: 16px;
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 36px;
    --font-size-h2: 32px;
    --font-size-h3: 24px;
  }
}

/* ========================================
   FIX: BODY BACKGROUND - LIGHT THEME
   ======================================== */

body {
  background-color: #FFFFFF !important;
}

/* ========================================
   FIX: HIDE ASTRA DEFAULT HEADER
   ======================================== */

#masthead,
.site-header,
.main-header-bar,
.ast-header-break-point .main-header-bar,
.ast-desktop .main-header-bar {
  display: none !important;
}

/* ========================================
   CUSTOM HEADER
   ======================================== */

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

/* Header scrolled state - Light Theme với shrink effect */
.custom-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.custom-header.is-scrolled .header-container {
  min-height: auto; /* Auto height */
  padding: 5px var(--spacing-md); /* Increased padding by 30% again when scrolled */
}

/* Header container */
.custom-header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 7px var(--spacing-md); /* Increased padding by 30% again (total +69%) */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  min-height: auto; /* Auto height - fits logo exactly */
}

/* Logo */
.custom-header .header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: var(--spacing-sm);
  max-width: 50%; /* Prevent logo from taking too much space */
}

.custom-header .header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.custom-header .header-logo a:hover {
  opacity: 0.85;
}

.custom-header .header-logo .site-logo {
  height: clamp(47px, 5.9vw, 59px); /* Reduced by 51% total (30% twice) */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: height var(--transition-fast);
  mix-blend-mode: multiply; /* Remove white background - make transparent */
}

/* Navigation Menu */
.custom-header .header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.custom-header .header-menu {
  display: flex;
  align-items: center;
  gap: 56px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-header .header-menu li {
  position: relative;
}

.custom-header .header-menu > li > a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--color-text-gray);
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

/* Submenu links */
.custom-header .header-menu .sub-menu a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--color-text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.custom-header .header-menu a:hover {
  color: var(--color-primary);
}

/* Dropdown indicator */
.custom-header .header-menu .menu-item-has-children > a::after {
  content: '▼';
  font-size: 9px;
  margin-left: 6px;
  opacity: 0.5;
  display: inline-block;
  transform: translateY(-1px);
}

/* Dropdown submenu - Light Theme */
.custom-header .header-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  padding: var(--spacing-xs);
  margin-top: var(--spacing-xs);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  list-style: none;
  box-shadow: var(--shadow-lg);
}

.custom-header .header-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-header .header-menu .sub-menu li {
  width: 100%;
}

.custom-header .header-menu .sub-menu a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 6px;
}

/* Nested submenu (Library trong Resources) */
.custom-header .header-menu .sub-menu .menu-item-has-children {
  position: relative;
}

.custom-header .header-menu .sub-menu .menu-item-has-children > a::after {
  content: '›';
  font-size: 16px;
  margin-left: auto;
  opacity: 0.5;
}

.custom-header .header-menu .sub-menu .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 8px;
}

.custom-header .header-menu .sub-menu .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Language Switcher */
.custom-header .language-switcher {
  position: relative;
  margin-left: auto;
}

.custom-header .language-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-gray);
}

.custom-header .language-btn:hover {
  background: var(--color-bg-gray);
  border-color: var(--color-border-gray);
}

.custom-header .language-btn .globe-icon {
  width: 18px;
  height: 18px;
  color: var(--color-text-gray);
  flex-shrink: 0;
}

.custom-header .language-btn .language-code {
  color: var(--color-text-gray);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.custom-header .language-btn:hover .globe-icon,
.custom-header .language-btn:hover .language-code {
  color: var(--color-primary);
}

.custom-header .language-btn .dropdown-arrow {
  font-size: 8px;
  opacity: 0.5;
  margin-left: 2px;
}

.custom-header .language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
}

.custom-header .language-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-header .language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--color-text-gray);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition-fast);
  font-size: 14px;
  font-weight: 500;
}

.custom-header .language-option:hover {
  background: var(--color-bg-gray);
  color: var(--color-text-dark);
}

.custom-header .language-option.active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.custom-header .language-option .flag-icon {
  font-size: 20px;
  line-height: 1;
}

/* Header Actions */
.custom-header .header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 0;
}

.custom-header .btn-login {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  color: var(--color-text-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  border-radius: var(--radius-button);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.custom-header .btn-login:hover {
  background: var(--color-bg-gray);
  color: var(--color-primary);
}

.custom-header .btn-demo {
  display: flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--color-gradient);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  border-radius: var(--radius-button);
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(26, 77, 126, 0.2);
  white-space: nowrap;
}

.custom-header .btn-demo:hover {
  background: linear-gradient(90deg, #0F3A5F 0%, #0D9488 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 77, 126, 0.3);
}

/* Mobile Menu Toggle */
.custom-header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0; /* Prevent hamburger from shrinking */
  margin-left: auto; /* Push to the right */
  position: relative;
  z-index: 100; /* Ensure it's always on top */
}

.custom-header .mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-text-dark);
  transition: all var(--transition-fast);
}

.custom-header .mobile-menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.custom-header .mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.custom-header .mobile-menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   RESPONSIVE HEADER
   ======================================== */

@media (max-width: 968px) {
  /* Simplify header on mobile - only show Logo + Hamburger */
  .custom-header .header-container {
    gap: var(--spacing-sm);
  }

  .custom-header .header-logo {
    max-width: 70%; /* Give logo more space on mobile */
  }

  .custom-header .header-nav {
    position: fixed;
    top: 100px; /* Updated to match compact header */
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .custom-header .header-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .custom-header .header-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .custom-header .header-menu li {
    border-bottom: 1px solid var(--color-border);
  }

  .custom-header .header-menu a {
    padding: var(--spacing-md);
  }

  .custom-header .header-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0;
    border: none;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-gray);
    border-radius: 0;
  }

  .custom-header .header-menu .menu-item-has-children > a::after {
    float: right;
  }

  .custom-header .mobile-menu-toggle {
    display: flex;
  }

  /* Hide language switcher and buttons on mobile to prevent overlap */
  .custom-header .language-switcher {
    display: none;
  }

  .custom-header .header-actions {
    display: none;
  }

  /* Header shrink on mobile when scrolled */
  .custom-header.is-scrolled .header-container {
    height: 52px;
  }
}

/* Mobile - Small tablets and large phones */
@media (max-width: 768px) {
  .custom-header .header-logo .site-logo {
    height: clamp(41px, 5.2vw, 53px); /* Reduced by 51% total */
  }

  .custom-header .header-container {
    padding: 7px var(--spacing-md); /* Increased padding by 30% again */
    min-height: auto;
  }

  .custom-header .header-logo {
    max-width: 75%; /* More space for logo on tablets */
  }
}

/* Mobile - Small phones */
@media (max-width: 640px) {
  .custom-header .header-logo .site-logo {
    height: clamp(35px, 4.4vw, 47px); /* Reduced by 51% total */
  }

  .custom-header .header-container {
    padding: 5px 16px; /* Increased padding by 30% again */
    min-height: auto;
  }

  .custom-header.is-scrolled .header-container {
    min-height: auto;
    padding: 5px 16px; /* Increased padding by 30% again */
  }

  .custom-header.is-scrolled .header-logo .site-logo {
    height: clamp(29px, 3.9vw, 39px); /* Reduced by 51% total - smaller when scrolled */
  }

  .custom-header .header-logo {
    max-width: 80%; /* Even more space on small phones */
  }

  .custom-header .mobile-menu-toggle {
    padding: 6px; /* Smaller padding on small screens */
  }
}

/* Mobile - Very small phones */
@media (max-width: 480px) {
  .custom-header .header-logo .site-logo {
    height: clamp(29px, 4.1vw, 41px); /* Reduced by 51% total */
  }

  .custom-header .header-container {
    padding: 5px 12px; /* Increased padding by 30% again */
    min-height: auto;
    gap: 8px; /* Smaller gap on very small screens */
  }

  .custom-header.is-scrolled .header-container {
    min-height: auto;
    padding: 5px 12px; /* Increased padding by 30% again */
  }

  .custom-header.is-scrolled .header-logo .site-logo {
    height: clamp(25px, 3.4vw, 34px); /* Reduced by 51% total - smaller when scrolled */
  }

  .custom-header .header-logo {
    max-width: 85%; /* Maximum space for logo */
  }

  .custom-header .mobile-menu-toggle {
    padding: 4px; /* Minimal padding */
  }

  .custom-header .mobile-menu-toggle span {
    width: 22px; /* Slightly smaller hamburger icon */
    height: 2px;
  }
}

/* ========================================
   ADJUST MAIN CONTENT FOR FIXED HEADER
   ======================================== */

body.has-custom-header {
  padding-top: 0 !important;
}

.site-content,
.site-main,
main#main {
  padding-top: 0 !important;
}

/* ========================================
   FOOTER STYLING - DARK BLUE
   ======================================== */

/* Footer Background - Navy Blue from Logo */
.custom-footer,
footer.custom-footer,
.site-footer,
footer,
.ast-footer,
.footer-adv,
.footer-adv-overlay,
.ast-small-footer {
  background: var(--color-primary) !important; /* #1A4D7E - Navy blue from logo */
  background-color: var(--color-primary) !important;
  background-image: none !important; /* Remove gradient */
  color: #FFFFFF !important;
}

/* Footer Widget Areas */
.footer-adv .footer-adv-widget,
.footer-adv-overlay {
  background-color: var(--color-primary) !important;
}

/* Footer Text Color - ALL TEXT WHITE */
.custom-footer,
.custom-footer *,
.custom-footer p,
.custom-footer span,
.custom-footer div,
.custom-footer h1,
.custom-footer h2,
.custom-footer h3,
.custom-footer h4,
.custom-footer h5,
.custom-footer h6,
.custom-footer li,
.custom-footer ul,
.custom-footer strong,
.custom-footer b,
.custom-footer em,
.site-footer,
.site-footer *,
.site-footer p,
.ast-footer,
.ast-small-footer,
.ast-small-footer p {
  color: #FFFFFF !important;
}

/* Footer Links - White text, Bright Cyan on hover */
footer.custom-footer a,
footer.custom-footer a *,
footer.custom-footer a span,
.site-footer a,
.ast-footer a,
.ast-small-footer a {
  color: #FFFFFF !important;
  text-decoration: none;
  transition: all var(--transition-fast);
}

footer.custom-footer a:hover,
footer.custom-footer a:hover *,
footer.custom-footer a:hover span,
footer.custom-footer a:focus,
.site-footer a:hover,
.ast-footer a:hover,
.ast-small-footer a:hover {
  color: #5CE1E6 !important; /* Bright cyan - high contrast on navy */
  text-decoration: underline !important;
  text-decoration-color: #5CE1E6 !important;
  border-bottom: 2px solid #5CE1E6 !important;
}

/* Footer Widget Titles & Brand Name */
.custom-footer .widget-title,
.custom-footer h1,
.custom-footer h2,
.custom-footer h3,
.custom-footer h4,
.custom-footer h5,
.custom-footer h6,
.custom-footer strong,
.custom-footer .brand-name,
.site-footer .widget-title,
.footer-adv .widget-title {
  color: #FFFFFF !important;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

/* Ensure LEANWISE AI text is white */
.custom-footer [class*="brand"],
.custom-footer [class*="logo"],
.custom-footer [class*="company"] {
  color: #FFFFFF !important;
}

/* Footer Copyright/Credits */
.ast-small-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--spacing-md) 0;
}

/* Footer Padding */
.site-footer {
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

/* Footer Logo - Force white text, no gradient */
.custom-footer .footer-logo,
.custom-footer .footer-logo *,
.custom-footer .footer-logo img,
.custom-footer [class*="logo"],
.custom-footer [class*="brand"] {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
  filter: brightness(0) invert(1) !important; /* Convert to white */
}

/* Footer Social Icons - White with bright cyan hover */
footer.custom-footer .social-icons,
footer.custom-footer .social-icons *,
footer.custom-footer [class*="social"],
footer.custom-footer [class*="share"],
footer.custom-footer svg,
footer.custom-footer i,
footer.custom-footer .fa,
footer.custom-footer [class*="icon"] {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
  background-color: transparent !important;
}

footer.custom-footer .social-icons a:hover,
footer.custom-footer .social-icons a:hover *,
footer.custom-footer [class*="social"] a:hover,
footer.custom-footer [class*="social"] a:hover *,
footer.custom-footer [class*="share"] a:hover,
footer.custom-footer [class*="share"] a:hover * {
  color: #5CE1E6 !important;
  fill: #5CE1E6 !important;
  stroke: #5CE1E6 !important;
}

footer.custom-footer .social-icons a:hover svg,
footer.custom-footer .social-icons a:hover i,
footer.custom-footer [class*="social"] a:hover svg,
footer.custom-footer [class*="social"] a:hover i,
footer.custom-footer a:hover svg,
footer.custom-footer a:hover i {
  color: #5CE1E6 !important;
  fill: #5CE1E6 !important;
  stroke: #5CE1E6 !important;
}
