/* ====== Global Styles ====== */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  line-height: 1.75;
  background: #F9FAFB;
}
.playfair-display { 
  font-family: 'Playfair Display', serif; 
  font-weight: 700; 
}
.text-emphasis { 
  font-family: 'Inter', sans-serif; 
  font-weight: 500; 
}
:root { --header-height: 4rem; }

section {
  padding-top: calc(3rem + var(--header-height));
  padding-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (min-width: 768px) { 
  :root { --header-height: 3.5rem; }
  section {
    padding-top: calc(5rem + var(--header-height));
    padding-bottom: 5rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ====== Hero Section ====== */
#hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: 
    linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%) 0 0/100px 100px,
    url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" opacity="0.15"%3E%3Cpath fill="%23A78BFA" d="M0 40c20 0 20-40 40-40s20 40 40 40-20 40-40 40S0 40 0 40z"/%3E%3C/svg%3E') 0 0/100px 100px;
  box-shadow: 0 10px 30px rgba(109, 40, 217, 0.15);
}
@media (min-width: 768px) { 
  #hero { min-height: 60vh; } 
}
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: gradient-pulse 8s ease infinite;
  z-index: 0;
}
#hero .container { 
  position: relative; 
  z-index: 1; 
  max-width: 900px; 
}
#hero h1 { 
  font-size: clamp(2rem, 5vw, 4rem); 
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}
#hero p { 
  font-size: clamp(1rem, 2vw, 1.25rem); 
  color: #E5E7EB; 
}

/* ====== Header & Navigation - ULTRA HIGH SPECIFICITY FIX ====== */
header {
  background: #FAFBFE !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

/* FORCE WHITE TEXT WITH MAXIMUM SPECIFICITY */
header #main-nav a,
header nav a,
header .nav-link,
header a[href] {
  color: #FFFFFF !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-block !important;
  transition: color 0.3s ease !important;
}

header #main-nav a:not(.lets-talk-link)[aria-current="page"],
header nav a:not(.lets-talk-link)[aria-current="page"] {
  color: #6D28D9 !important;
}

header #main-nav a:hover,
header nav a:hover,
header #main-nav a:focus,
header nav a:focus {
  color: #A78BFA !important;
  transform: scale(1.05) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#main-nav {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.lets-talk-link {
  background: linear-gradient(45deg, #6D28D9, #A78BFA) !important;
  color: #FFFFFF !important;
}

.lets-talk-link:hover, 
.lets-talk-link:focus, 
.lets-talk-link:active {
  color: #FFFFFF !important;
  background: linear-gradient(45deg, #A78BFA, #6D28D9) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#mobile-menu-toggle,
#mobile-menu-toggle svg path {
  color: #FFFFFF !important; /* WHITE hamburger */
  stroke: #FFFFFF !important;
}

#mobile-menu-toggle:hover,
#mobile-menu-toggle:focus {
  color: #A78BFA !important;
}

/* ====== FIXED: Mobile Menu - FROZEN POSITION & DARK TEXT ====== */
.mobile-menu-close {
  position: absolute;
  top: 1rem; 
  right: 1rem;
  font-size: 1.5rem;
  color: #111827;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 50;
  
  /* HIDE COMPLETELY ON DESKTOP - NO INTERACTION */
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 767px) {
  .mobile-menu-close {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    color: #111827 !important;
  }
  
  .mobile-menu-close:hover, 
  .mobile-menu-close:focus { 
    color: #A78BFA !important; 
  }
  
  /* FIXED: MOBILE MENU - FROZEN POSITION & DARK TEXT */
  #main-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    /* Remove bottom: 0 to make it fixed height, not full screen */
    height: 100vh !important;
    background: rgba(254, 253, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999 !important; /* Higher z-index to stay on top */
    overflow-y: auto; /* Allow scrolling if content overflows */
  }
  
  #main-nav.is-open { 
    display: flex !important; 
  }
  
  /* DARK TEXT FOR MOBILE MENU - HIGH CONTRAST */
  #main-nav.is-open a { 
    font-size: 1.25rem; 
    padding: 0.75rem; 
    color: #1F2937 !important; /* DARK TEXT FOR WHITE BACKGROUND */
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 600; /* Bolder for better readability */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  }
  
  /* Ensure mobile menu stays frozen/visible when open */
  #main-nav.is-open {
    position: fixed !important;
    top: 0 !important;
    animation: none !important; /* Prevent any conflicting animations */
  }
}

/* FORCE NAV VISIBILITY AFTER INSPECTION */
@media (min-width: 768px) {
  #main-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    flex-direction: row !important;
  }
  
  #main-nav a {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
  }
  
  /* RESET ANY MOBILE MENU STATES ON DESKTOP */
  #main-nav:not(.is-open) {
    display: flex !important;
  }
}

/* ====== Services Section ====== */
.services-grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: stretch;
  justify-content: center;
}
.services-grid-container > div {
  flex: 1 1 320px;
  max-width: 400px;
  background: #D1D5FF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-grid-container > div:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 8px 30px rgba(109, 40, 217, 0.2);
  background: linear-gradient(135deg, #D1D5FF, #E0E7FF);
}
.services-grid-container > div p {
  color: #374151 !important; /* Darker text for better contrast on light bg */
}
.services-grid-container > div svg { 
  color: #6D28D9; 
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-grid-container > div:hover svg { 
  color: #2DD4BF; 
  transform: rotate(15deg); 
}

/* ====== Process Section ====== */
.process-list { counter-reset: process-step; }
.process-list li { min-height: 200px; }
.process-list li::before {
  counter-increment: process-step;
  content: "0" counter(process-step);
  font-size: 1.75rem;
  font-weight: bold;
  color: #6D28D9;
  margin-bottom: 0.5rem;
  display: block;
}
.process-list li p { 
  color: #E5E7EB; 
}
#process {
  background: 
    linear-gradient(135deg, #F9FAFB, #F9FAFB) 0 0/60px 60px,
    url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" opacity="0.1"%3E%3Cpath fill="%23A78BFA" d="M20 20h40v40H20z"/%3E%3C/svg%3E') 0 0/60px 60px;
}
#process a { color: #6D28D9; }
#process a:hover, #process a:focus { color: #2DD4BF; }

/* ====== Philosophy Section ====== */
#philosophy .grid > div:first-child {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1), rgba(45, 212, 191, 0.1));
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.1);
  text-align: center;
}
#philosophy .grid > div:last-child {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}
#philosophy .grid > div:first-child p {
  max-width: 90%;
  margin: 0 auto;
}
#philosophy ul {
  list-style-type: none;
  padding-left: 0;
}
#philosophy ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
#philosophy ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2DD4BF;
  font-weight: bold;
}
#philosophy .achievement-highlight {
  color: #6D28D9;
  font-weight: 600;
}
@media (min-width: 1024px) {
  #philosophy .grid > div:first-child { text-align: right; }
  #philosophy .grid > div:last-child { text-align: left; }
}
@media (max-width: 767px) {
  #philosophy .grid > div:first-child, 
  #philosophy .grid > div:last-child { padding: 1.5rem; }
  #philosophy .grid > div:first-child p { max-width: 100%; }
}

/* ====== FIXED: Partner With Us Button Spacing ====== */
#hero a,
#process a[href="#get-in-touch"] {
  font-size: 1.125rem !important;
  padding: 0.875rem 2rem !important;
  display: inline-block;
  margin-top: 1.5rem !important; /* ADDED SPACING FROM TEXT */
}

@media (min-width: 768px) {
  #hero a,
  #process a[href="#get-in-touch"] {
    font-size: 1.25rem !important;
    padding: 1rem 2.5rem !important;
    margin-top: 2rem !important; /* MORE SPACING ON DESKTOP */
  }
}

@media (max-width: 767px) {
  #hero a,
  #process a[href="#get-in-touch"] {
    font-size: 1rem !important;
    padding: 0.75rem 1.5rem !important;
    display: block;
    text-align: center;
    margin: 1.5rem auto 0 !important; /* SPACING FROM TEXT ON MOBILE */
  }
}

/* ====== Contact Section - FIXED LABEL COLORS ====== */
#get-in-touch { 
  background: linear-gradient(135deg, #6D28D9 0%, #A78BFA 80%); 
}
#get-in-touch h2, 
#get-in-touch p { 
  color: #FFFFFF; 
}

#lead-form div { position: relative; }

/* FIX: Make form labels WHITE for better visibility */
#lead-form label {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.875rem;
  pointer-events: none;
  transition: all 0.2s ease;
  color: #FFFFFF !important; /* WHITE LABELS */
  z-index: 10;
}

#lead-form input:focus + label,
#lead-form input:not(:placeholder-shown) + label,
#lead-form textarea:focus + label,
#lead-form textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.25rem) scale(0.9);
  color: #A78BFA !important; /* Purple accent on focus */
  font-size: 0.75rem;
}

#lead-form input, 
#lead-form textarea {
  padding: 1.25rem 1rem 0.5rem;
  background: #FFFFFF;
  border: 1px solid #9CA3AF;
  color: #111827;
}
#lead-form input:focus, 
#lead-form textarea:focus { 
  border-color: #A78BFA; 
  outline: none;
}

/* Ensure form text content is white */
#lead-form .text-text-dark {
  color: #FFFFFF !important;
}

#lead-form .checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-left: 0.5rem;
  flex-wrap: wrap;
}
#lead-form .checkbox-label {
  font-size: 0.875rem;
  color: #FFFFFF !important;
  line-height: 1.25;
}
#lead-form input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
  vertical-align: middle;
}
@media (max-width: 767px) {
  #lead-form .checkbox-container {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
  #lead-form input[type="checkbox"] {
    margin-top: 0;
    margin-right: 0.5rem;
  }
  #lead-form .checkbox-label {
    max-width: calc(100% - 2rem);
  }
}

/* ====== Footer Styles - LIGHTER BACKGROUND ====== */
footer {
  background: #F8FAFC !important; /* LIGHTER background like header */
  color: #111827 !important;
}

footer h4,
footer p,
footer a { 
  color: #111827 !important; /* BLACK TEXT - HIGH VISIBILITY */
  transition: color 0.2s ease;
}

footer a:hover, 
footer a:focus {
  color: #A78BFA !important; /* Purple hover effect */
  text-decoration: underline;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

/* Ensure copyright text is visible */
footer .text-center {
  color: #111827 !important;
}

/* ====== Modal Styles ====== */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.modal-content {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  max-width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal.is-open { 
  visibility: visible; 
  opacity: 1; 
}
.modal.is-open .modal-content { 
  transform: scale(1);
  animation: modalSlideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.5rem;
  color: #4B5563;
  cursor: pointer;
  background: none;
  border: none;
}
.modal-close:hover, 
.modal-close:focus { 
  color: #A78BFA; 
}
.modal-content h2,
.modal-content .legal-section p:not(:last-child),
.modal-content .legal-section ul { 
  margin-bottom: 1rem; 
}
.modal-content h2,
.modal-content h3 {
  color: #111827; 
}

/* FIXED: Email links in modals - same color as text, no underline */
.modal-content a[href*="activatepartnerships@gmail.com"],
.modal-content a[href*="mailto:activatepartnerships"] {
  color: inherit !important;
  text-decoration: none !important;
}

/* ====== Utilities ====== */
.divider { 
  background: linear-gradient(to right, transparent, #A78BFA, transparent); 
  height: 1px; 
  margin: 3rem 0; 
}
.error-message { 
  display: none; 
  color: #B91C1C; 
  font-size: 0.875rem; 
  margin-top: 0.25rem; 
}

/* ====== Logo Styles ====== */
#logo {
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #6D28D9, #2DD4BF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 8px rgba(109, 40, 217, 0.3);
  animation: logo-bounce 2s ease-in-out infinite;
  padding: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#logo:hover, 
#logo:focus {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(109, 40, 217, 0.5), 0 0 30px rgba(45, 212, 191, 0.3);
  border: 2px solid transparent;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, #6D28D9, #2DD4BF);
  animation: 
    border-dance 3s linear infinite, 
    logo-bounce 2s ease-in-out infinite;
}

/* ====== Section Titles ====== */
#services-title, #service-1-title, #service-2-title, #service-3-title,
#process-title, .process-list h3, 
#philosophy-title, #philosophy .space-y-4 h3 {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ====== Interactions ====== */
#hero a:active,
#lead-form button:active {
  animation: button-press 0.2s ease;
}

/* ====== Dark Mode - ULTRA HIGH SPECIFICITY OVERRIDE ====== */
@media (prefers-color-scheme: dark) {
  body { 
    background: #121822; 
    color: #E5E7EB; 
  }
  
  /* Dark mode header - darker but with white text */
  header { 
    background: #1E293B !important; /* Slightly lighter dark */
  }
  
  /* MAXIMUM SPECIFICITY FOR DARK MODE NAV TEXT */
  header #main-nav a,
  header nav a,
  header .nav-link,
  header a[href] {
    color: #E5E7EB !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
  }
  
  header #main-nav a:not(.lets-talk-link)[aria-current="page"],
  header nav a:not(.lets-talk-link)[aria-current="page"] {
    color: #6D28D9 !important;
  }
  
  header #main-nav a:hover,
  header nav a:hover,
  header #main-nav a:focus,
  header nav a:focus {
    color: #A78BFA !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  #mobile-menu-toggle,
  #mobile-menu-toggle svg path {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
  }
  
  /* Dark mode footer - light gray text */
  footer {
    background: #1E293B !important; /* Lighter dark background */
  }
  
  footer h4,
  footer p,
  footer a { 
    color: #E5E7EB !important; /* Light gray text for dark mode */
  }
  
  footer a:hover, 
  footer a:focus {
    color: #A78BFA !important;
  }
  
  footer .text-center {
    color: #E5E7EB !important;
  }
  
  .modal-content {
    background: #1F2937 !important;
    color: #E5E7EB !important;
  }
  .modal-content a {
    color: #A78BFA !important;
  }
  .modal-content h2, 
  .modal-content h3 {
    color: #FFFFFF !important;
  }
  
  /* FIXED: Email links in dark mode modals */
  .modal-content a[href*="activatepartnerships@gmail.com"],
  .modal-content a[href*="mailto:activatepartnerships"] {
    color: inherit !important;
    text-decoration: none !important;
  }
  
  #hero {
    background: 
      linear-gradient(135deg, #1F2937 0%, #374151 100%),
      url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" opacity="0.15"%3E%3Cpath fill="%23A78BFA" d="M0 40c20 0 20-40 40-40s20 40 40 40-20 40-40 40S0 40 0 40z"/%3E%3C/svg%3E');
  }
  #hero h1, #hero p {
    color: #E5E7EB !important;
  }
  #philosophy p, #philosophy li,
  .process-list li p,
  .services-grid-container > div p {
    color: #D1D5DB !important;
  }
  .text-emphasis {
    color: #E5E7EB !important;
  }
  .services-grid-container > div,
  #contact-form-container { 
    background: #1F2937 !important; 
  }
  #services, #philosophy,
  #process { 
    background: #121822 !important; 
  }
  .services-grid-container > div:hover { 
    background: linear-gradient(135deg, #1F2937, #374151) !important; 
  }
  #process {
    background: 
      linear-gradient(135deg, #121822, #121822),
      url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" opacity="0.1"%3E%3Cpath fill="%23A78BFA" d="M20 20h40v40H20z"/%3E%3C/svg%3E');
  }
  #philosophy .grid > div:first-child {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.2), rgba(45, 212, 191, 0.2));
    text-align: center;
  }
  #philosophy .grid > div:last-child { text-align: center; }
  #philosophy ul li::before,
  #philosophy .text-accent-teal { color: #6D28D9; }
  #philosophy .achievement-highlight { color: #A78BFA; }
  #get-in-touch { 
    background: linear-gradient(135deg, #6D28D9 0%, #A78BFA 80%) !important; 
  }
  #get-in-touch h2, 
  #get-in-touch p {
    color: #FFFFFF !important; 
  }
  #lead-form .checkbox-label {
    color: #FFFFFF !important;
  }
  #lead-form input, 
  #lead-form textarea { 
    background: #374151 !important; 
    color: #FFFFFF !important; 
    border-color: #6B7280 !important; 
  }
  /* Dark mode form labels stay white */
  #lead-form label {
    color: #FFFFFF !important;
  }
  .modal-close {
    color: #E5E7EB !important; 
  }
  .divider { 
    background: linear-gradient(to right, transparent, #A78BFA, transparent) !important; 
  }
  #logo {
    background: linear-gradient(45deg, #A78BFA, #2DD4BF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(109, 40, 217, 0.4);
  }
  .playfair-display {
    color: #FFFFFF !important;
  }
  
  @media (max-width: 767px) {
    /* DARK MODE MOBILE MENU - DARK TEXT ON SLIGHTLY DARKER BACKGROUND */
    #main-nav.is-open {
      background: rgba(30, 41, 59, 0.98) !important; /* Darker backdrop for dark mode */
    }
    #main-nav.is-open a { 
      color: #E5E7EB !important; /* Light text for dark mode mobile menu */
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    .mobile-menu-close {
      color: #E5E7EB !important;
    }
  }
}

/* ====== CRITICAL ANIMATIONS ====== */
@keyframes gradient-pulse {
  0%, 100% { 
    background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, transparent 70%); 
  }
  50% { 
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%); 
  }
}

@keyframes button-press {
  0% { transform: scale(1); }
  50% { transform: scale(0.95); }
  100% { transform: scale(1.05); }
}

@keyframes logo-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes border-dance {
  0% { border-image-source: linear-gradient(0deg, #6D28D9, #2DD4BF); }
  25% { border-image-source: linear-gradient(90deg, #6D28D9, #2DD4BF); }
  50% { border-image-source: linear-gradient(180deg, #6D28D9, #2DD4BF); }
  75% { border-image-source: linear-gradient(270deg, #6D28D9, #2DD4BF); }
  100% { border-image-source: linear-gradient(360deg, #6D28D9, #2DD4BF); }
}

@keyframes pulse-subtle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes forceVisible {
  to {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
  }
}

/* ====== Enhanced Modal Animation ====== */
@keyframes modalSlideIn {
  from {
    transform: scale(0.95) translateY(-20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* ====== EMERGENCY VISIBILITY FIX ====== */
header nav,
header #main-nav {
  animation: forceVisible 0.1s ease forwards !important;
}

header nav a,
header #main-nav a {
  -webkit-appearance: none !important;
  appearance: none !important;
  pointer-events: auto !important;
}
