/* Prevent horizontal scrolling on mobile */
html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%) !important;
  color: #e8e9f3 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  padding-top: 80px !important;
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

.wrapper {
  background: transparent !important;
}

/* Navbar */
.navbar {
  background: rgba(15, 15, 35, 0.95) !important;
  backdrop-filter: blur(30px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
  border-bottom: 1px solid rgba(167, 139, 250, 0.15) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
  padding: 14px 0 !important;
  transition: all 0.3s ease !important;
}

.navbar.absolute {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1030 !important;
}

.navbar.transparent {
  background: rgba(15, 15, 35, 0.85) !important;
}

/* Navbar Brand / Logo */
.navbar-brand {
  padding: 0 !important;
}

.navbar-brand img.logo {
  max-height: 50px !important;
  transition: all 0.3s ease !important;
}

.navbar-brand:hover img.logo {
  transform: scale(1.05) !important;
  filter: brightness(1.1) !important;
}

/* Navbar Links */
.navbar-nav {
  align-items: center !important;
  gap: 8px !important;
}

.nav-item {
  margin: 0 4px !important;
}

.nav-item a, .nav-link {
  color: #e8e9f3 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  font-family: 'Inter', sans-serif !important;
}

.nav-item a:hover, .nav-link:hover {
  color: #ffffff !important;
  background: rgba(167, 139, 250, 0.1) !important;
  transform: translateY(-1px) !important;
}

.nav-item a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 8px !important;
  left: 18px !important;
  right: 18px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #a78bfa 0%, #8b5cf6 100%) !important;
  transform: scaleX(0) !important;
  transition: transform 0.3s ease !important;
  border-radius: 2px !important;
}

.nav-item a:hover::after {
  transform: scaleX(1) !important;
}

/* Active/Current Page */
.nav-item.active a, .nav-link.active {
  color: #ffffff !important;
  background: rgba(167, 139, 250, 0.15) !important;
}

/* Dropdown Menu */
.dropdown-menu {
  background: rgba(30, 27, 75, 0.95) !important;
  backdrop-filter: blur(30px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
  border: 1px solid rgba(167, 139, 250, 0.2) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
  padding: 8px !important;
  margin-top: 8px !important;
}

.dropdown-item {
  color: #e8e9f3 !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #ffffff !important;
  background: rgba(167, 139, 250, 0.2) !important;
  transform: translateX(4px) !important;
}

/* Language Selector */
.nav-item.lang a {
  background: rgba(167, 139, 250, 0.1) !important;
  border: 1px solid rgba(167, 139, 250, 0.2) !important;
}

.nav-item.lang a:hover {
  background: rgba(167, 139, 250, 0.2) !important;
  border-color: rgba(167, 139, 250, 0.4) !important;
}

/* Hamburger Menu (Mobile) */
.navbar-hamburger button.hamburger {
  padding: 8px !important;
}

.hamburger span,
.hamburger span:before,
.hamburger span:after {
  background: #e8e9f3 !important;
  height: 2px !important;
  border-radius: 2px !important;
}

.hamburger:hover span,
.hamburger:hover span:before,
.hamburger:hover span:after {
  background: #a78bfa !important;
}

/* Offcanvas Mobile Menu - Only on Mobile */
@media screen and (max-width: 1024px) {
  .offcanvas-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    width: 320px !important;
    max-width: 85vw !important;
    background: rgba(15, 15, 35, 0.98) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5) !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease, visibility 0s linear 0.3s, opacity 0.3s ease !important;
    z-index: 10000 !important;
    overflow-y: auto !important;
    padding: 20px 0 !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .offcanvas-nav.show,
  .offcanvas-nav.open,
  .navbar-collapse.show .offcanvas-nav {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: transform 0.3s ease, visibility 0s linear 0s, opacity 0.3s ease !important;
  }

  .offcanvas-nav .nav-item {
    margin: 4px 12px !important;
  }

  .offcanvas-nav .nav-item a {
    padding: 14px 20px !important;
    display: block !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
  }

  .offcanvas-nav .nav-item a:hover {
    background: rgba(167, 139, 250, 0.15) !important;
  }

  /* Offcanvas header with close button */
  .offcanvas-header {
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2) !important;
  }

  .offcanvas-close, .offcanvas-header .close {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    background: rgba(167, 139, 250, 0.2) !important;
    border: 1px solid rgba(167, 139, 250, 0.3) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 24px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .offcanvas-close:hover, .offcanvas-header .close:hover {
    background: rgba(167, 139, 250, 0.3) !important;
    transform: rotate(90deg) !important;
  }

  /* Offcanvas backdrop */
  .offcanvas-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }

  .offcanvas-backdrop.show {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Custom scrollbar for offcanvas */
  .offcanvas-nav::-webkit-scrollbar {
    width: 6px !important;
  }

  .offcanvas-nav::-webkit-scrollbar-track {
    background: rgba(30, 27, 75, 0.3) !important;
  }

  .offcanvas-nav::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
    border-radius: 3px !important;
  }

  .offcanvas-nav::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
  }
}

/* Special styling for Login/Access button */
# .nav-item.acceso a {
#   background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
#   color: #ffffff !important;
#   font-weight: 600 !important;
#   border: 1px solid rgba(167, 139, 250, 0.3) !important;
#   box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3) !important;
#   -webkit-text-fill-color: #ffffff !important;
#   text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
# }

# .nav-item.acceso a:hover {
#   background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
#   color: #ffffff !important;
#   -webkit-text-fill-color: #ffffff !important;
#   box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5) !important;
#   transform: translateY(-2px) !important;
# }

# .nav-item.acceso a::after {
#   display: none !important;
# }

/* Ensure dropdown toggle in acceso doesn't get weird colors */
.nav-item.acceso .dropdown-toggle {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}



/* Hide default dropdown icons */
.dropdown-toggle::after {
  display: none !important;
}

.nav-link.dropdown-toggle::after {
  display: none !important;
}


/* Banner (if present) */
.banner {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
  border-bottom: 1px solid rgba(167, 139, 250, 0.3) !important;
}

.banner-text {
  color: white !important;
  font-weight: 600 !important;
}

.banner-button {
  background: rgba(15, 15, 35, 0.9) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

.banner-button:hover {
  background: rgba(15, 15, 35, 1) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Hero Section */
#wrapper_1 {
  background: radial-gradient(ellipse at top, #1e1b4b 0%, #0f0f23 50%) !important;
  background-attachment: fixed !important;
  position: relative !important;
  overflow: hidden !important;
}

#wrapper_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

#wrapper_2 {
  background: rgba(15, 15, 35, 0.5) !important;
  backdrop-filter: blur(10px) !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* Typography */
#titular {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 52px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 24px !important;
  text-align: center !important;
}

/* Numbers/highlights in titles should be purple but visible */
#titular span, h1 span, h2 span, .display-3 span {
  color: #a78bfa !important;
  background: transparent !important;
  -webkit-text-fill-color: #c026d3 !important;
  font-weight: 700 !important;
}

#subtitular {
  font-family: 'Inter', sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #cbd5e1 !important;
  text-align: center !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#titular2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #cbd5e1 !important;
  text-align: center !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

h2, .display-3 {
  font-size: 32px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

h4 {
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
}

h6 {
  font-size: 15px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}

p, li {
  color: #cbd5e1 !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  font-family: 'Inter', sans-serif !important;
}

/* Booking page specific styles */
.availability h2 {
  font-size: 24px !important;
  line-height: 1.3 !important;
  margin-bottom: 12px !important;
}

.availability h4 {
  font-size: 15px !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
}

.availability h6 {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.availability p {
  font-size: 15px !important;
  line-height: 1.6 !important;
}

span:not(pre):not(pre *):not(.CodeMirror):not(.CodeMirror *):not(li span):not(.timeline-badge span)
  color: #c026d3 !important;
  background: transparent !important;
  -webkit-text-fill-color: currentColor !important;
  font-weight: 600 !important;
}

/* Specific spans that should have gradient */
.gradient-text span, .highlight span {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Numbered circles with purple background - ensure white text */
[style*="background-color"][style*="border-radius"][style*="display: inline-flex"] span,
[style*="background-color"][style*="border-radius"][style*="display: flex"] span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: transparent !important;
}

/* Buttons */
.btn {
  background: linear-gradient(135deg, #c026d3 0%, #9333ea 100%) !important;
  border: 1px solid rgba(147, 51, 234, 0.4) !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 18px 44px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.5) !important;
  transition: all 0.3s ease !important;
  font-family: 'Inter', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.7) !important;
  background: linear-gradient(135deg, #a21caf 0%, #7e22ce 100%) !important;
  color: white !important;
}

.btn-rounded {
  border-radius: 12px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 0.5px !important;
}

.btn-default {
  background: linear-gradient(135deg, #c026d3 0%, #9333ea 100%) !important;
  color: white !important;
  border: 1px solid rgba(147, 51, 234, 0.4) !important;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4) !important;
  transition: all 0.3s ease !important;
}

.btn-default:hover {
  background: linear-gradient(135deg, #a21caf 0%, #7e22ce 100%) !important;
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.6) !important;
  transform: translateY(-2px) !important;
  color: white !important;
}

/* Cards & Boxes */
.box, .card {
  background: rgba(30, 27, 75, 0.5) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.box:hover, .card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(139, 92, 246, 0.4) !important;
  box-shadow: 0 25px 70px rgba(139, 92, 246, 0.2) !important;
}

.box h4, .box h6, .box p, .card h4, .card h6, .card p {
  color: #e8e9f3 !important;
}

/* Testimonial items - clase.ejs specific */
.testimonial-item .box,
.item-inner .box {
  min-height: 320px !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  overflow: hidden !important;
  word-wrap: break-word !important;
}

.testimonial-content {
  flex: 1 !important;
  margin-bottom: 20px !important;
}

.testimonial-text {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #cbd5e1 !important;
  font-style: italic !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
}

.testimonial-text .fas.fa-quote-left,
.testimonial-text .fas.fa-quote-right {
  font-size: 16px !important;
  opacity: 0.3 !important;
  color: #a78bfa !important;
}

.testimonial-text .fas.fa-quote-left {
  margin-right: 8px !important;
}

.testimonial-text .fas.fa-quote-right {
  margin-left: 8px !important;
}

.read-more-link {
  margin-top: 10px !important;
}

.read-more-link a {
  font-size: 13px !important;
  color: #a78bfa !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}

.read-more-link a:hover {
  color: #8b5cf6 !important;
}

.person-avatar {
  margin-right: 12px !important;
  flex-shrink: 0 !important;
}

.person-avatar img,
.person-avatar .avatar-placeholder {
  width: 55px !important;
  height: 55px !important;
  object-fit: cover !important;
  border: 2px solid rgba(139, 92, 246, 0.2) !important;
}

.avatar-placeholder {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
  color: white !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.person-info {
  min-height: 55px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.person-name {
  font-weight: 600 !important;
  color: #ffffff !important;
  font-size: 16px !important;
  margin-bottom: 6px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.person-role .badge {
  font-size: 11px !important;
  font-weight: 500 !important;
  background: rgba(139, 92, 246, 0.2) !important;
  color: #a78bfa !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  padding: 4px 10px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  display: inline-block !important;
}

/* Opinion/Testimonial Cards */
.testimonial-card,
.opinion-card {
  background: rgba(30, 27, 75, 0.3) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 16px !important;
  padding: 32px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  display: flex !important;
  flex-direction: column !important;
}

.testimonial-card::before,
.opinion-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent 0%, #a78bfa 50%, transparent 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.testimonial-card:hover,
.opinion-card:hover {
  background: rgba(30, 27, 75, 0.4) !important;
  border-color: rgba(167, 139, 250, 0.35) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25) !important;
}

.testimonial-card:hover::before,
.opinion-card:hover::before {
  opacity: 1 !important;
}

/* Card title/role styling */
.testimonial-card h4,
.testimonial-card h5,
.opinion-card h4,
.opinion-card h5 {
  color: #ffffff !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}

.testimonial-card .role,
.opinion-card .role {
  color: #a78bfa !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
  display: block !important;
}

/* Person info header section */
.person-info-header {
  margin-bottom: 0 !important;
  margin-top: auto !important;
  padding-top: 20px !important;
  padding-bottom: 0 !important;
  border-top: 1px solid rgba(139, 92, 246, 0.15) !important;
  border-bottom: none !important;
  # display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  order: 2 !important;
}

/* Testimonial footer with person info */
.testimonial-card footer,
.opinion-card footer,
.testimonial-footer {
  margin-top: auto !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(139, 92, 246, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  order: 2 !important;
}

/* Person name styling */
.person-name {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  margin-bottom: 4px !important;
  text-align: left !important;
  letter-spacing: 0.3px !important;
}

.person-name a {
  color: #3b82f6 !important;
  transition: all 0.3s ease !important;
}

.person-name a:hover {
  color: #60a5fa !important;
  transform: scale(1.1) !important;
}

/* Opiniones.ejs specific - person info header */
.person-info-header .person-name {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  margin-bottom: 8px !important;
  text-align: center !important;
}

.person-info-header .person-role {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  margin-bottom: 8px !important;
  text-align: center !important;
}

.person-info-header .person-role .badge {
  background: rgba(147, 51, 234, 0.25) !important;
  color: #e9d5ff !important;
  border: 1px solid rgba(147, 51, 234, 0.4) !important;
  font-size: 0.6rem !important;
  font-weight: 600 !important;
  padding: 6px 14px !important;
  text-align: center !important;
}

.person-info-header .person-location,
.person-info-header .person-origin {
  color: #cbd5e1 !important;
  font-size: 0.6rem !important;
  display: inline-block !important;
  margin: 4px 6px !important;
}

.person-info-header .company-badge {
  background: rgba(71, 85, 105, 0.3) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(100, 116, 139, 0.3) !important;
  padding: 3px 10px !important;
  border-radius: 12px !important;
  font-size: 0.6rem !important;
  display: inline-block !important;
  margin: 4px 3px !important;
}

.person-info-header .company-badge i {
  margin-right: 4px !important;
  opacity: 0.7 !important;
}

/* Person role badge - more subtle */
.person-role {
  margin-bottom: 0 !important;
  text-align: left !important;
}

.person-role .badge {
  background: rgba(71, 85, 105, 0.35) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(100, 116, 139, 0.4) !important;
  padding: 6px 12px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
}

/* Person meta (location, origin, companies) */
.person-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.8em !important;
  margin-top: 8px !important;
}

.person-meta span {
  color: #94a3b8 !important;
  padding: 4px 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: all 0.3s ease !important;
  font-weight: 500 !important;
}

.person-meta span:hover {
  background: transparent !important;
  border-color: transparent !important;
  color: #cbd5e1 !important;
}

.person-location {
  color: #94a3b8 !important;
  display: inline-block !important;
  background: rgba(71, 85, 105, 0.3) !important;
  border: 1px solid rgba(100, 116, 139, 0.35) !important;
  border-radius: 8px !important;
  padding: 3px 8px !important;
  font-size: 0.65em !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  white-space: nowrap !important;
}

.person-location:hover {
  background: rgba(71, 85, 105, 0.45) !important;
  border-color: rgba(100, 116, 139, 0.5) !important;
  color: #cbd5e1 !important;
}

.person-origin {
  color: #94a3b8 !important;
  display: inline-block !important;
  background: rgba(71, 85, 105, 0.3) !important;
  border: 1px solid rgba(100, 116, 139, 0.35) !important;
  border-radius: 8px !important;
  padding: 3px 8px !important;
  font-size: 0.65em !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  white-space: nowrap !important;
}

.person-origin:hover {
  background: rgba(71, 85, 105, 0.45) !important;
  border-color: rgba(100, 116, 139, 0.5) !important;
  color: #cbd5e1 !important;
}

/* Company badges - more compact and neutral like roles */
.company-badge {
  display: inline-block !important;
  background: rgba(71, 85, 105, 0.3) !important;
  border: 1px solid rgba(100, 116, 139, 0.35) !important;
  border-radius: 8px !important;
  padding: 3px 8px !important;
  font-size: 0.65em !important;
  font-weight: 500 !important;
  color: #cbd5e1 !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  white-space: nowrap !important;
}

.company-badge:hover {
  background: rgba(71, 85, 105, 0.45) !important;
  border-color: rgba(100, 116, 139, 0.5) !important;
  transform: translateY(-1px) !important;
}

.company-badge i {
  font-size: 9px !important;
  margin-right: 3px !important;
  opacity: 0.7 !important;
}

/* Video testimonial section */
.video-testimonial-section {
  margin-top: 12px !important;
}

.video-testimonial {
  margin-bottom: 12px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 2px solid rgba(139, 92, 246, 0.3) !important;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2) !important;
  transition: all 0.3s ease !important;
}

/* Blog post titles - more compact */
.post-title,
.post-title-desktop {
  font-size: 1.2rem !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
}

.post-title a,
.post-title-desktop a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.post-title a:hover,
.post-title-desktop a:hover {
  color: #a78bfa !important;
}

.video-testimonial:hover {
  border-color: rgba(167, 139, 250, 0.5) !important;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.35) !important;
  transform: translateY(-3px) !important;
}

/* Testimonial text content */
.testimonial-content {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  order: 1 !important;
}

.testimonial-text,
.testimonial-content p,
.testimonial-content blockquote,
.testimonial-card p,
.opinion-card p {
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  font-style: italic !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  border-left: none !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Remove any inner boxes or containers */
.testimonial-card > div[style*="background"],
.opinion-card > div[style*="background"],
.testimonial-content > div[style*="background"] {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}

/* Icons & Bullets */
.bullet-default i, .icon-list li i, .icofont-verification-check {
  color: #c026d3 !important;
  font-size: 22px !important;
  margin-right: 12px !important;
  transition: all 0.3s ease !important;
  vertical-align: middle !important;
}

.icon-list li:hover i, .icon-list li:hover .icofont-verification-check {
  color: #a78bfa !important;
  transform: scale(1.05) !important;
}

.icon-list li, .bullet-default li {
  color: #cbd5e1 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin-bottom: 16px !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.icon-list li strong, .bullet-default li strong {
  color: #ffffff !important;
  font-weight: 600 !important;
}

.icon-list li span, .bullet-default li span {
  color: #cbd5e1 !important;
}

/* Checkmark lists with better styling */
.icon-list {
  padding-left: 0 !important;
  margin-bottom: 24px !important;
}

ul.icon-list li::before {
  content: none !important;
}

/* Images */
img {
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(167, 139, 250, 0.2) !important;
  opacity: 1 !important;
  transition: all 0.4s ease !important;
}

/* Remove border-radius from navbar and footer logos only */
.navbar-brand img,
.navbar-brand img.logo,
footer .logo,
footer img.logo {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Company logos with subtle rounded corners */
#wrapper_customers img,
#medios img,
.logos img,
.logo-grid img,
.companies img,
.partners img {
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  padding: 8px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  display: block !important;
  margin: 0 auto !important;
  max-height: 80px !important;
  width: auto !important;
  object-fit: contain !important;
  transition: all 0.3s ease !important;
}

img:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4), 
              0 0 0 1px rgba(167, 139, 250, 0.4),
              0 0 40px rgba(139, 92, 246, 0.2) !important;
}

.navbar-brand img:hover,
.navbar-brand img.logo:hover,
footer .logo:hover,
footer img.logo:hover {
  transform: scale(1.05) !important;
  box-shadow: none !important;
}

#wrapper_customers img:hover,
#medios img:hover,
.logos img:hover,
.logo-grid img:hover,
.companies img:hover,
.partners img:hover {
  transform: scale(1.05) translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

figure img {
  border-radius: 20px !important;
  opacity: 1 !important;
}

/* Content images with special styling */
.content-wrapper img, .inner img, article img {
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(167, 139, 250, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Testimonial/WhatsApp message images - special treatment */
.wrapper img[src*="chat"], 
.wrapper img[src*="whatsapp"],
.wrapper img[src*="message"],
.testimonial-item img:not(.person-avatar img),
#wrapper_testimonials img:not(.person-avatar img) {
  border-radius: 24px !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 
              0 0 0 2px rgba(167, 139, 250, 0.3),
              0 0 60px rgba(139, 92, 246, 0.15) !important;
  border: 1px solid rgba(167, 139, 250, 0.2) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.wrapper img[src*="chat"]:hover, 
.wrapper img[src*="whatsapp"]:hover,
.wrapper img[src*="message"]:hover,
.testimonial-item img:not(.person-avatar img):hover,
#wrapper_testimonials img:not(.person-avatar img):hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 35px 100px rgba(139, 92, 246, 0.5), 
              0 0 0 3px rgba(167, 139, 250, 0.5),
              0 0 80px rgba(139, 92, 246, 0.3) !important;
  border-color: rgba(167, 139, 250, 0.6) !important;
}

/* Footer */
footer {
  background: rgba(15, 15, 35, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  border-top: 1px solid rgba(139, 92, 246, 0.1) !important;
}

footer a, footer p, .social li a i {
  color: #cbd5e1 !important;
}

footer a:hover, .social li a:hover i {
  color: #a78bfa !important;
}

/* Forms */
input:not([type="range"]):not([type="submit"]), select, textarea {
  background: rgba(30, 27, 75, 0.5) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 10px !important;
  color: #e8e9f3 !important;
  padding: 12px 16px !important;
  font-family: 'Inter', sans-serif !important;
  transition: all 0.3s ease !important;
}

input:focus, select:focus, textarea:focus {
  border-color: #8b5cf6 !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
  outline: none !important;
}

label, .col-form-label {
  color: #f3f4f6 !important;
  font-weight: 500 !important;
}

/* Filter buttons (blog, opiniones) */
.filter-btn {
  background: rgba(71, 85, 105, 0.2) !important;
  border: 1px solid rgba(100, 116, 139, 0.3) !important;
  color: #cbd5e1 !important;
  padding: 8px 16px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  backdrop-filter: blur(10px) !important;
  line-height: 1.2 !important;
}

.filter-btn:hover {
  background: rgba(100, 116, 139, 0.35) !important;
  border-color: rgba(148, 163, 184, 0.5) !important;
  color: #e8e9f3 !important;
}

.filter-btn.active {
  background: rgba(167, 139, 250, 0.2) !important;
  border: 1px solid rgba(167, 139, 250, 0.5) !important;
  color: #a78bfa !important;
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.3) !important;
}

.filter-btn.active:hover {
  background: rgba(167, 139, 250, 0.3) !important;
  border-color: rgba(167, 139, 250, 0.6) !important;
  color: #ffffff !important;
}

/* Filters row layout */
.filters-row {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-bottom: 30px !important;
  padding: 12px 16px !important;
  # background: rgba(30, 27, 75, 0.3) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  # border: 1px solid rgba(139, 92, 246, 0.1) !important;
}

.filter-group {
  display: inline-flex !important;
  align-items: center !important;
}

/* Form selects (dropdowns) */
.form-select, 
.select-wrapper select,
select.form-select-sm {
  background: rgba(30, 27, 75, 0.5) !important;
  border: 1px solid rgba(100, 116, 139, 0.3) !important;
  border-radius: 8px !important;
  color: #e8e9f3 !important;
  padding: 5px 26px 5px 10px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  min-height: 28px !important;
  height: 28px !important;
  line-height: 1.2 !important;
}

.form-select:hover,
.select-wrapper select:hover,
select.form-select-sm:hover {
  background: rgba(30, 27, 75, 0.7) !important;
  border-color: rgba(148, 163, 184, 0.4) !important;
}

.form-select:focus,
.select-wrapper select:focus,
select.form-select-sm:focus {
  background: rgba(30, 27, 75, 0.8) !important;
  border-color: rgba(167, 139, 250, 0.6) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.15) !important;
}

.form-select option,
select option {
  background: rgba(15, 15, 35, 0.98) !important;
  color: #e8e9f3 !important;
  padding: 8px !important;
}

/* Select wrapper styling */
.select-wrapper {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
}

.select-wrapper::after {
  content: '▼' !important;
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
  color: #64748b !important;
  font-size: 8px !important;
  opacity: 0.7 !important;
}

/* Counter badge styling */
.date-filters .badge,
.article-count {
  background: rgba(71, 85, 105, 0.3) !important;
  color: #e8e9f3 !important;
  border: 1px solid rgba(100, 116, 139, 0.4) !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* Intl Tel Input (Twilio) Styling */
.iti {
  width: 100% !important;
  display: block !important;
}

.iti__input,
.iti input[type="tel"],
body .iti__input,
body .iti input[type="tel"] {
  background: rgba(30, 27, 75, 0.5) !important;
  border: 1px solid rgba(139, 92, 246, 0.25) !important;
  border-radius: 10px !important;
  color: #e8e9f3 !important;
  padding: 12px 16px 12px 105px !important;
  font-family: 'Inter', sans-serif !important;
  width: 100% !important;
  transition: all 0.3s ease !important;
  text-align: left !important;
}

/* Ensure proper spacing for flag container */
.iti__selected-flag,
body .iti__selected-flag {
  padding: 0 10px 0 14px !important;
  min-width: 80px !important;
}

.iti__selected-dial-code,
body .iti__selected-dial-code {
  margin-left: 6px !important;
}

.iti__input:focus,
.iti input[type="tel"]:focus {
  border-color: rgba(167, 139, 250, 0.6) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.15) !important;
}

.iti--show-selected-dial-code .iti__selected-flag {
  background-color: transparent !important;
  border-right: 1px solid rgba(139, 92, 246, 0.2) !important;
  padding-right: 8px !important;
}

.iti__selected-dial-code {
  color: #a78bfa !important;
  font-weight: 600 !important;
}

.iti__arrow {
  border-top-color: #a78bfa !important;
}

.iti__arrow--up {
  border-bottom-color: #a78bfa !important;
}

/* Intl Tel Input Dropdown - High Priority */
body .iti__dropdown-content,
html body .iti__dropdown-content {
  background: rgba(15, 15, 35, 0.98) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

body .iti__country-list,
html body .iti__country-list {
  background: transparent !important;
  color: #e8e9f3 !important;
  max-height: 200px !important;
}

body .iti__country,
html body .iti__country {
  color: #cbd5e1 !important;
  background: transparent !important;
  padding: 10px 14px !important;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1) !important;
  transition: all 0.2s ease !important;
}

body .iti__country:hover,
html body .iti__country:hover {
  background: rgba(167, 139, 250, 0.15) !important;
  color: #ffffff !important;
}

body .iti__country.iti__highlight,
html body .iti__country.iti__highlight {
  background: rgba(167, 139, 250, 0.25) !important;
  color: #ffffff !important;
}

body .iti__country.iti__active,
html body .iti__country.iti__active {
  background: rgba(167, 139, 250, 0.3) !important;
  color: #ffffff !important;
}

body .iti__country-name,
html body .iti__country-name {
  color: inherit !important;
  font-weight: 500 !important;
}

body .iti__dial-code,
html body .iti__dial-code {
  color: #a78bfa !important;
  font-weight: 600 !important;
}

body .iti__country.iti__highlight .iti__dial-code,
html body .iti__country.iti__highlight .iti__dial-code {
  color: #ffffff !important;
}

body .iti__country.iti__active .iti__dial-code,
html body .iti__country.iti__active .iti__dial-code {
  color: #ffffff !important;
}

body .iti__search-input,
html body .iti__search-input {
  background: rgba(30, 27, 75, 0.5) !important;
  border: 1px solid rgba(139, 92, 246, 0.25) !important;
  border-radius: 8px !important;
  color: #e8e9f3 !important;
  padding: 8px 12px !important;
  margin: 8px !important;
  width: calc(100% - 16px) !important;
}

body .iti__search-input:focus,
html body .iti__search-input:focus {
  border-color: rgba(167, 139, 250, 0.5) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.15) !important;
}

body .iti__search-input::placeholder,
html body .iti__search-input::placeholder {
  color: #9ca3af !important;
}

/* Divider in dropdown */
body .iti__divider,
html body .iti__divider {
  border-bottom: 1px solid rgba(139, 92, 246, 0.2) !important;
  padding: 0 !important;
  margin: 4px 0 !important;
}

/* Checkbox Styling */
input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid rgba(139, 92, 246, 0.4) !important;
  border-radius: 6px !important;
  background: rgba(30, 27, 75, 0.5) !important;
  cursor: pointer !important;
  position: relative !important;
  transition: all 0.3s ease !important;
  margin-right: 10px !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}

input[type="checkbox"]:hover {
  border-color: rgba(167, 139, 250, 0.6) !important;
  background: rgba(30, 27, 75, 0.7) !important;
}

input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
  border-color: transparent !important;
}

input[type="checkbox"]:checked::after {
  content: '✓' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: bold !important;
}

/* Checkbox label */
label[for*="customCheck"],
.custom-control-label {
  color: #cbd5e1 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

/* Checkbox container */
.custom-control,
div:has(> input[type="checkbox"]) {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin-bottom: 16px !important;
  padding: 12px !important;
  background: rgba(30, 27, 75, 0.3) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
}

.custom-control:hover,
div:has(> input[type="checkbox"]):hover {
  background: rgba(30, 27, 75, 0.4) !important;
  border-color: rgba(139, 92, 246, 0.3) !important;
}

/* Owl Carousel */
.owl-carousel .owl-dots {
  text-align: center !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  padding: 15px 10px !important;
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block !important;
  margin: 0 8px !important;
}

.owl-carousel .owl-dots .owl-dot span {
  background: rgba(167, 139, 250, 0.4) !important;
  display: block !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: #a78bfa !important;
  border-color: #a78bfa !important;
  transform: scale(1.2) !important;
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.5) !important;
}

.owl-carousel .owl-dots .owl-dot:hover span {
  background: #8b5cf6 !important;
  border-color: #8b5cf6 !important;
  transform: scale(1.1) !important;
}

/* Smooth autoplay animation */
.owl-carousel .owl-stage {
  transition: all 0.5s ease !important;
}

.owl-carousel .owl-item {
  transition: opacity 0.5s ease !important;
}

/* Hide dots on mobile to save space */
@media (max-width: 768px) {
  .owl-carousel .owl-dots {
    display: none !important;
  }
}

/* Prevent carousel overflow */
.grid-view,
.carousel.owl-carousel {
  overflow: visible !important;
  max-width: 100% !important;
}

#wrapper_6 {
  overflow: visible !important;
}

#wrapper_6 .container,
#wrapper_6 .inner {
  overflow: visible !important;
}

/* Interviews Page Styles - ONLY for /interviews list page */
/* Add specific body class to identify interviews pages */
body.interviews-list-page #wrapper_1 .filter-btn {
  background: none !important;
  border: 1px solid rgba(167, 139, 250, 0.3) !important;
  padding: 8px 16px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  color: #cbd5e1 !important;
  background-color: rgba(30, 27, 75, 0.3) !important;
  text-decoration: none !important;
  margin: 4px !important;
}

body.interviews-list-page #wrapper_1 .filter-btn:hover {
  border-color: rgba(167, 139, 250, 0.5) !important;
  background-color: rgba(30, 27, 75, 0.5) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

body.interviews-list-page #wrapper_1 .filter-btn.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
  border-color: rgba(139, 92, 246, 0.6) !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
}

/* Search Form */
body.interviews-list-page #wrapper_1 .form-control {
  padding: 10px 16px !important;
  height: 42px !important;
  border-radius: 10px !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  background: rgba(30, 27, 75, 0.3) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  min-width: 250px !important;
  transition: all 0.3s ease !important;
}

body.interviews-list-page #wrapper_1 .form-control::placeholder {
  color: rgba(203, 213, 225, 0.5) !important;
}

body.interviews-list-page #wrapper_1 .form-control:focus {
  border-color: rgba(167, 139, 250, 0.6) !important;
  background: rgba(30, 27, 75, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
  outline: none !important;
}

body.interviews-list-page #wrapper_1 form .btn[type="submit"] {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  border: none !important;
  padding: 10px 24px !important;
  font-size: 15px !important;
  height: 42px !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  min-width: 100px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
}

body.interviews-list-page #wrapper_1 form .btn[type="submit"]:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4) !important;
}

/* Table Styles */
body.interviews-list-page #wrapper_1 table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 8px !important;
  margin-top: 20px !important;
}

body.interviews-list-page #wrapper_1 table thead th {
  background: rgba(30, 27, 75, 0.5) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 16px 20px !important;
  text-align: left !important;
  border: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

body.interviews-list-page #wrapper_1 table thead th:first-child {
  border-radius: 12px 0 0 12px !important;
}

body.interviews-list-page #wrapper_1 table thead th:last-child {
  border-radius: 0 12px 12px 0 !important;
}

body.interviews-list-page #wrapper_1 table tbody tr {
  background: rgba(30, 27, 75, 0.3) !important;
  transition: all 0.3s ease !important;
  border-radius: 12px !important;
}

body.interviews-list-page #wrapper_1 table tbody tr:hover {
  background: rgba(30, 27, 75, 0.5) !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2) !important;
}

body.interviews-list-page #wrapper_1 table tbody td {
  padding: 18px 20px !important;
  border: none !important;
  color: #cbd5e1 !important;
  font-size: 15px !important;
  vertical-align: middle !important;
}

body.interviews-list-page #wrapper_1 table tbody td:first-child {
  border-radius: 12px 0 0 12px !important;
}

body.interviews-list-page #wrapper_1 table tbody td:last-child {
  border-radius: 0 12px 12px 0 !important;
}

/* Problem title links */
body.interviews-list-page #wrapper_1 table tbody td a {
  color: #ffffff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 16px !important;
  transition: color 0.3s ease !important;
}

body.interviews-list-page #wrapper_1 table tbody td a:hover {
  color: #a78bfa !important;
}

/* Topic/Theme badges - more subtle */
body.interviews-list-page #wrapper_1 .badge {
  background: rgba(71, 85, 105, 0.25) !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(100, 116, 139, 0.3) !important;
  padding: 6px 12px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 2px !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

body.interviews-list-page #wrapper_1 .badge:hover {
  background: rgba(71, 85, 105, 0.35) !important;
  border-color: rgba(100, 116, 139, 0.5) !important;
  color: #cbd5e1 !important;
}

/* Difficulty badges */
body.interviews-list-page #wrapper_1 .difficulty-easy {
  background: rgba(34, 197, 94, 0.15) !important;
  color: #4ade80 !important;
  border-color: rgba(34, 197, 94, 0.3) !important;
}

body.interviews-list-page #wrapper_1 .difficulty-medium {
  background: rgba(251, 191, 36, 0.15) !important;
  color: #fbbf24 !important;
  border-color: rgba(251, 191, 36, 0.3) !important;
}

body.interviews-list-page #wrapper_1 .difficulty-hard {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #f87171 !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
}

/* Company logos in badges */
body.interviews-list-page #wrapper_1 .filter-btn img {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
  margin-right: 4px !important;
}

/* Percentage stats */
body.interviews-list-page #wrapper_1 .percentage {
  font-weight: 700 !important;
  font-size: 18px !important;
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Companies Page Styles - ONLY for /interviews/companies */
body.interviews-companies-page #wrapper_1 .card {
  background: rgba(30, 27, 75, 0.3) !important;
  border: 1px solid rgba(167, 139, 250, 0.3) !important;
  border-radius: 16px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

body.interviews-companies-page #wrapper_1 .card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2) !important;
  border-color: rgba(167, 139, 250, 0.5) !important;
}

body.interviews-companies-page #wrapper_1 .card-body {
  padding: 24px !important;
}

/* Company logo container */
body.interviews-companies-page #wrapper_1 .company-logo {
  width: 55px !important;
  height: 55px !important;
  border-radius: 12px !important;
  background: rgba(139, 92, 246, 0.1) !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 16px !important;
}

body.interviews-companies-page #wrapper_1 .company-logo img {
  max-width: 42px !important;
  max-height: 42px !important;
  object-fit: contain !important;
}

body.interviews-companies-page #wrapper_1 .company-logo span {
  color: #a78bfa !important;
  font-weight: 700 !important;
  font-size: 24px !important;
}

/* Company name and problem count */
body.interviews-companies-page #wrapper_1 .card h5 {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  margin-bottom: 4px !important;
}

body.interviews-companies-page #wrapper_1 .card .text-muted {
  color: #94a3b8 !important;
  font-size: 14px !important;
}

/* Difficulty breakdown section */
body.interviews-companies-page #wrapper_1 .card h6 {
  color: #cbd5e1 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 12px !important;
}

body.interviews-companies-page #wrapper_1 .card .text-success {
  color: #4ade80 !important;
  font-weight: 700 !important;
}

body.interviews-companies-page #wrapper_1 .card .text-warning {
  color: #fbbf24 !important;
  font-weight: 700 !important;
}

body.interviews-companies-page #wrapper_1 .card .text-danger {
  color: #f87171 !important;
  font-weight: 700 !important;
}

/* Progress bar */
body.interviews-companies-page #wrapper_1 .progress {
  height: 10px !important;
  background-color: rgba(30, 27, 75, 0.5) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

body.interviews-companies-page #wrapper_1 .progress-bar {
  background: linear-gradient(90deg, #8b5cf6 0%, #6d28d9 100%) !important;
  border-radius: 10px !important;
  transition: width 0.6s ease !important;
}

/* Problem list items */
body.interviews-companies-page #wrapper_1 .card .d-flex.py-1 span:first-child {
  color: #e2e8f0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* Difficulty badges in problem list */
body.interviews-companies-page #wrapper_1 .badge-success {
  background: rgba(34, 197, 94, 0.2) !important;
  color: #4ade80 !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
  padding: 4px 10px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
}

body.interviews-companies-page #wrapper_1 .badge-warning {
  background: rgba(251, 191, 36, 0.2) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(251, 191, 36, 0.3) !important;
  padding: 4px 10px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
}

body.interviews-companies-page #wrapper_1 .badge-danger {
  background: rgba(239, 68, 68, 0.2) !important;
  color: #f87171 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  padding: 4px 10px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
}

/* View All button */
body.interviews-companies-page #wrapper_1 .btn-outline-primary {
  background: transparent !important;
  color: #a78bfa !important;
  border: 2px solid rgba(167, 139, 250, 0.4) !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  text-transform: capitalize !important;
}

body.interviews-companies-page #wrapper_1 .btn-outline-primary:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3) !important;
}

/* Company Page Styles */
/* Timeline styles */
.timeline-container {
  position: relative !important;
  padding: 40px 0 !important;
}

.timeline {
  position: relative !important;
}

.timeline::before {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 3px !important;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(139, 92, 246, 0.3) 100%) !important;
  transform: translateX(-50%) !important;
}

.timeline-item {
  position: relative !important;
  margin-bottom: 80px !important;
  display: flex !important;
  justify-content: flex-start !important;
  padding-left: calc(50% + 50px) !important;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end !important;
  padding-left: 0 !important;
  padding-right: calc(50% + 50px) !important;
}

.timeline-marker {
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;
  transform: translateX(-50%) !important;
  width: 24px !important;
  height: 24px !important;
  background: rgba(30, 27, 75, 0.8) !important;
  border: 4px solid #8b5cf6 !important;
  border-radius: 50% !important;
  z-index: 10 !important;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.2) !important;
}

.timeline-marker-inner {
  width: 100% !important;
  height: 100% !important;
  background: #a78bfa !important;
  border-radius: 50% !important;
  animation: pulse 2s ease-in-out infinite !important;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.timeline-content {
  background: rgba(30, 27, 75, 0.4) !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  border-radius: 16px !important;
  padding: 32px !important;
  width: 100% !important;
  max-width: 700px !important;
  transition: all 0.3s ease !important;
}

.timeline-content:hover {
  border-color: rgba(167, 139, 250, 0.5) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2) !important;
}

.timeline-date {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #a78bfa !important;
  margin-bottom: 12px !important;
  text-shadow: 0 2px 8px rgba(139, 92, 246, 0.3) !important;
}

.timeline-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
  line-height: 1.3 !important;
}

.timeline-description {
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #cbd5e1 !important;
  margin-bottom: 20px !important;
}

.timeline-image img {
  width: 100% !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.3s ease !important;
}

.timeline-image img:hover {
  transform: scale(1.02) !important;
}

/* Mobile timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px !important;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }
  
  .timeline-marker {
    left: 20px !important;
  }
  
  .timeline-content {
    max-width: 100% !important;
  }
}

/* Stats counter - Alejandro stats (25+, $1M, etc) */
#wrapper_3 .counter h3 {
  font-size: 56px !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 12px !important;
  line-height: 1.1 !important;
}

#wrapper_3 .counter p {
  font-size: 16px !important;
  color: #cbd5e1 !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
}

/* Gallery interviews - email cards */
#wrapper_3 img.img-fluid {
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
  border: 2px solid rgba(167, 139, 250, 0.2) !important;
}

#wrapper_3 img.img-fluid:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.3) !important;
  border-color: rgba(167, 139, 250, 0.4) !important;
}

/* Company logos */
#wrapper_3 .col-lg-2 img {
  filter: grayscale(100%) brightness(1.5) !important;
  opacity: 0.5 !important;
  transition: all 0.3s ease !important;
}

#wrapper_3 .col-lg-2 img:hover {
  filter: grayscale(0%) brightness(1) !important;
  opacity: 1 !important;
  transform: scale(1.1) !important;
}

/* Why EngineerGame section */
#wrapper_4 {
  background: rgba(30, 27, 75, 0.3) !important;
  border-top: 2px solid rgba(167, 139, 250, 0.2) !important;
  border-bottom: 2px solid rgba(167, 139, 250, 0.2) !important;
}

#wrapper_4 h2 {
  color: #ffffff !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  margin-bottom: 32px !important;
}

#wrapper_4 p {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #cbd5e1 !important;
  margin-bottom: 24px !important;
}

/* Results stats - 97 Alumnos, $14.5M, etc */
#wrapper_5 .counter h3 {
  font-size: 64px !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 8px !important;
  line-height: 1 !important;
}

#wrapper_5 .counter p {
  font-size: 15px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
  line-height: 1.4 !important;
}

/* Testimonials in company page - reuse existing styles */
#wrapper_5 .item-inner .box {
  background: rgba(30, 27, 75, 0.4) !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  border-radius: 16px !important;
  min-height: 380px !important;
  padding: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all 0.3s ease !important;
}

#wrapper_5 .item-inner .box:hover {
  border-color: rgba(167, 139, 250, 0.5) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2) !important;
}

#wrapper_5 .testimonial-text {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #cbd5e1 !important;
  font-style: italic !important;
}

#wrapper_5 .person-name {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 4px !important;
}

#wrapper_5 .person-role {
  font-size: 14px !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
}

/* Team section */
#wrapper_6 .team-member {
  padding: 20px !important;
  transition: transform 0.3s ease !important;
}

#wrapper_6 .team-name {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-top: 20px !important;
  margin-bottom: 8px !important;
}

#wrapper_6 .team-role {
  font-size: 15px !important;
  color: #a78bfa !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 16px !important;
}

#wrapper_6 .team-description {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #cbd5e1 !important;
  margin-bottom: 20px !important;
}

#wrapper_6 .skill-tag {
  display: inline-block !important;
  background: rgba(71, 85, 105, 0.25) !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(100, 116, 139, 0.3) !important;
  padding: 6px 14px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  margin: 4px !important;
  transition: all 0.3s ease !important;
}

#wrapper_6 .skill-tag:hover {
  background: rgba(139, 92, 246, 0.2) !important;
  border-color: rgba(167, 139, 250, 0.4) !important;
  color: #a78bfa !important;
}

/* Interview Problem Page Styles */
/* Preserve inline styles for code blocks and other specific elements */
/* Disabled to prevent conflicts - inline styles are sufficient */
/* .interviews-problem-page .code-container,
.interviews-problem-page .code-container *,
.interviews-problem-page .code-header,
.interviews-problem-page .solution-card,
.interviews-problem-page .solution-card *,
.interviews-problem-page pre[class*="language-"],
.interviews-problem-page code[class*="language-"],
.interviews-problem-page .copy-btn {
  all: revert !important;
} */

/* Ensure Prism.js spans don't break styling */
.interviews-problem-page code[class*="language-"] span {
  color: inherit !important;
  background: none !important;
}

.interviews-problem-page .token.keyword {
  color: #c678dd !important;
}

.interviews-problem-page .token.function {
  color: #61afef !important;
}

.interviews-problem-page .token.operator,
.interviews-problem-page .token.punctuation {
  color: #abb2bf !important;
}

.interviews-problem-page .token.builtin {
  color: #e5c07b !important;
}

.interviews-problem-page .token.string {
  color: #98c379 !important;
}

.interviews-problem-page .token.comment {
  color: #5c6370 !important;
  font-style: italic !important;
}

/* Line numbers styling */
.interviews-problem-page .line-numbers-rows {
  border-right: 1px solid rgba(167, 139, 250, 0.2) !important;
}

.interviews-problem-page .line-numbers-rows > span:before {
  color: rgba(203, 213, 225, 0.4) !important;
}

/* Re-apply only specific holo theme colors to non-code elements */
.interviews-problem-page #wrapper_1 h1,
.interviews-problem-page #wrapper_1 h2,
.interviews-problem-page #wrapper_1 h3,
.interviews-problem-page #wrapper_1 h4,
.interviews-problem-page #wrapper_1 h5 {
  color: #ffffff !important;
}

.interviews-problem-page #wrapper_1 p,
.interviews-problem-page #wrapper_1 li {
  color: #cbd5e1 !important;
}

/* Input/Output pre elements */
.interviews-problem-page pre {
  font-family: 'JetBrains Mono', 'Monaco', 'Menlo', monospace !important;
}

/* Complexity code elements */
.interviews-problem-page .box-body code:not([class*="language-"]) {
  background: rgba(30, 27, 75, 0.4) !important;
  color: #a78bfa !important;
  border: 1px solid rgba(167, 139, 250, 0.3) !important;
  padding: 0.5rem 0.8rem !important;
  border-radius: 6px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
}

/* Problem Stats Box (top right) */
.interviews-problem-page .col-lg-4 .box {
  background: rgba(30, 27, 75, 0.3) !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  border-radius: 16px !important;
  padding: 24px !important;
}

.interviews-problem-page .col-lg-4 .box h6 {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

.interviews-problem-page .col-lg-4 .box .text-success {
  color: #4ade80 !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.interviews-problem-page .col-lg-4 .box .font-weight-bold {
  font-size: 36px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.interviews-problem-page .col-lg-4 .box .text-muted {
  color: #94a3b8 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-top: 8px !important;
}

.interviews-problem-page .col-lg-4 .box .badge-info {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.interviews-problem-page .col-lg-4 .box .badge-info:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4) !important;
}

/* Problem title and badges */
.interviews-problem-page h1 {
  color: #ffffff !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

/* Company logos styling */
.interviews-problem-page .col-lg-8 img[alt*="logo"] {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain !important;
  border-radius: 6px !important;
  background: rgba(30, 27, 75, 0.4) !important;
  padding: 4px !important;
  border: 1px solid rgba(167, 139, 250, 0.2) !important;
  margin: 4px !important;
  transition: all 0.3s ease !important;
}

.interviews-problem-page .col-lg-8 img[alt*="logo"]:hover {
  border-color: rgba(167, 139, 250, 0.5) !important;
  transform: scale(1.05) !important;
}

/* Topic badges (Array, Tabla Hash, etc) */
.interviews-problem-page .col-lg-8 .badge-info {
  background: rgba(71, 85, 105, 0.25) !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(100, 116, 139, 0.3) !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
  margin: 4px !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.interviews-problem-page .col-lg-8 .badge-info:hover {
  background: rgba(71, 85, 105, 0.35) !important;
  border-color: rgba(100, 116, 139, 0.5) !important;
  color: #cbd5e1 !important;
  transform: translateY(-1px) !important;
}

.interviews-problem-page .badge-success,
.interviews-problem-page .badge-warning,
.interviews-problem-page .badge-danger {
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  border: none !important;
}

.interviews-problem-page .badge-success {
  background: rgba(34, 197, 94, 0.2) !important;
  color: #4ade80 !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
}

.interviews-problem-page .badge-warning {
  background: rgba(251, 191, 36, 0.2) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(251, 191, 36, 0.3) !important;
}

.interviews-problem-page .badge-danger {
  background: rgba(239, 68, 68, 0.2) !important;
  color: #f87171 !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

/* Ranking and frequency text */
.interviews-problem-page .text-muted {
  color: #94a3b8 !important;
  font-size: 14px !important;
}

/* Back link (discrete, top) */
.interviews-problem-page .back-link-discrete {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #94a3b8 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  background: rgba(30, 27, 75, 0.2) !important;
  border: 1px solid rgba(167, 139, 250, 0.2) !important;
}

.interviews-problem-page .back-link-discrete:hover {
  color: #a78bfa !important;
  background: rgba(30, 27, 75, 0.4) !important;
  border-color: rgba(167, 139, 250, 0.4) !important;
  transform: translateX(-2px) !important;
}

.interviews-problem-page .back-link-discrete i {
  font-size: 12px !important;
}

/* Code editor container for logged users */
.code-editor-container {
  background: rgba(30, 27, 75, 0.4) !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  border-radius: 12px !important;
  padding: 16px !important;
  margin-bottom: 20px !important;
}

.code-editor-container > div:first-child {
  color: #a78bfa !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.code-editor-container textarea {
  width: 100% !important;
  min-height: 350px !important;
  background: rgba(20, 18, 50, 0.6) !important;
  border: 1px solid rgba(167, 139, 250, 0.2) !important;
  border-radius: 8px !important;
  color: #e2e8f0 !important;
  padding: 16px !important;
  font-family: 'JetBrains Mono', 'Monaco', 'Menlo', monospace !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  resize: vertical !important;
}

.code-editor-container textarea:focus {
  outline: none !important;
  border-color: rgba(167, 139, 250, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
}

.code-editor-container textarea::placeholder {
  color: rgba(203, 213, 225, 0.3) !important;
}

/* CodeMirror custom styling for holo theme */
.interviews-problem-page .CodeMirror {
  background: rgba(30, 27, 75, 0.4) !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  border-radius: 12px !important;
  padding: 8px !important;
  font-family: 'JetBrains Mono', 'Monaco', 'Menlo', monospace !important;
  font-size: 14px !important;
  color: #e8e9f3 !important;
}

.interviews-problem-page .CodeMirror-gutters {
  background: rgba(30, 27, 75, 0.6) !important;
  border-right: 1px solid rgba(167, 139, 250, 0.2) !important;
}

.interviews-problem-page .CodeMirror-linenumber {
  color: #94a3b8 !important;
}

.interviews-problem-page .CodeMirror-cursor {
  border-left: 2px solid #a78bfa !important;
}

.interviews-problem-page .CodeMirror-selected {
  background: rgba(167, 139, 250, 0.2) !important;
}

.interviews-problem-page .CodeMirror-line::selection,
.interviews-problem-page .CodeMirror-line > span::selection,
.interviews-problem-page .CodeMirror-line > span > span::selection {
  background: rgba(167, 139, 250, 0.2) !important;
}

.interviews-problem-page .CodeMirror-focused .CodeMirror-selected {
  background: rgba(167, 139, 250, 0.3) !important;
}

.interviews-problem-page .CodeMirror-scrollbar-filler {
  background: transparent !important;
}

/* CodeMirror autocomplete hints */
.interviews-problem-page .CodeMirror-hints {
  background: rgba(30, 27, 75, 0.95) !important;
  border: 2px solid rgba(167, 139, 250, 0.4) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
  font-family: 'JetBrains Mono', 'Monaco', 'Menlo', monospace !important;
}

.interviews-problem-page .CodeMirror-hint {
  color: #e8e9f3 !important;
  padding: 6px 12px !important;
  font-size: 13px !important;
  border-radius: 4px !important;
}

.interviews-problem-page .CodeMirror-hint-active {
  background: rgba(167, 139, 250, 0.3) !important;
  color: #ffffff !important;
}

/* Action buttons for problem page */
.interviews-problem-page .badge {
  border: none !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-transform: none !important;
  background: transparent !important;
  margin-right: 8px !important;
  margin-bottom: 8px !important;
}

/* Run & Test button - Green border */
.interviews-problem-page #runCodeBtn {
  border: 2px solid #10b981 !important;
  color: #10b981 !important;
}

.interviews-problem-page #runCodeBtn:hover {
  background: rgba(16, 185, 129, 0.1) !important;
  border-color: #059669 !important;
  color: #059669 !important;
  transform: translateY(-1px) !important;
}

/* Submit Solution button - Blue border */
.interviews-problem-page #submitBtn {
  border: 2px solid #3b82f6 !important;
  color: #3b82f6 !important;
}

.interviews-problem-page #submitBtn:hover {
  background: rgba(59, 130, 246, 0.1) !important;
  border-color: #2563eb !important;
  color: #2563eb !important;
  transform: translateY(-1px) !important;
}

/* Mark as Completed button - Purple border */
.interviews-problem-page #markCompleteBtn {
  border: 2px solid #8b5cf6 !important;
  color: #8b5cf6 !important;
}

.interviews-problem-page #markCompleteBtn:hover {
  background: rgba(139, 92, 246, 0.1) !important;
  border-color: #7c3aed !important;
  color: #7c3aed !important;
  transform: translateY(-1px) !important;
}

/* Disabled state */
.interviews-problem-page .badge:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* Progress section */
.progress-section {
  background: rgba(30, 27, 75, 0.3) !important;
  border: 1px solid rgba(167, 139, 250, 0.2) !important;
  border-radius: 10px !important;
  padding: 16px !important;
}

.progress-section .progress {
  background: rgba(30, 27, 75, 0.5) !important;
  border-radius: 10px !important;
  height: 10px !important;
}

.progress-section .progress-bar {
  background: linear-gradient(90deg, #8b5cf6 0%, #6d28d9 100%) !important;
  border-radius: 10px !important;
}

/* Results section */
#resultsSection .alert {
  background: rgba(30, 27, 75, 0.4) !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  border-radius: 10px !important;
  color: #e2e8f0 !important;
}

/* Box container for problem page */
.interviews-problem-page .box {
  background: rgba(30, 27, 75, 0.3) !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  margin-bottom: 24px !important;
}

.interviews-problem-page .box h5 {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

/* Sections */
#benefits, #obstacles, #testimonials, #warranty, #biotitle, #steps, #customerstitle, #medios {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin-bottom: 40px !important;
  margin-top: 0 !important;
}

/* Steps title with less margin */
#steps {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}

/* Reduce spacing for section titles inside white-wrapper */
.white-wrapper #benefits,
.white-wrapper #obstacles,
.white-wrapper #testimonials,
.white-wrapper #warranty,
.white-wrapper #biotitle,
.white-wrapper #steps,
.white-wrapper #customerstitle,
.white-wrapper #medios,
.white-wrapper #schedule {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Reduce space80 inside white-wrapper */
.white-wrapper .space80 {
  height: 30px !important;
}

.white-wrapper .space50 {
  height: 20px !important;
}

/* Reduce spacing in company and interviews pages */
.space60 {
  height: 40px !important;
}

.space80 {
  height: 50px !important;
}

@media (max-width: 768px) {
  .space60 {
    height: 25px !important;
  }

  .space80 {
    height: 35px !important;
  }
}

/* Highlights/numbers in section titles */
#benefits span, #obstacles span, #testimonials span, #warranty span, 
#biotitle span, #steps span, #customerstitle span, #medios span {
  color: #c026d3 !important;
  background: transparent !important;
  -webkit-text-fill-color: #c026d3 !important;
  font-weight: 700 !important;
}

#benefit, #obstacle {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

#biodescription {
  color: #cbd5e1 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

/* Spacing - Optimized for holo theme */
.space10 { height: 10px !important; }
.space15 { height: 15px !important; }
.space20 { height: 20px !important; }
.space30 { height: 30px !important; }
.space40 { height: 40px !important; }
.space50 { height: 50px !important; }
.space60 { height: 60px !important; }
.space70 { height: 70px !important; }
.space80 { height: 80px !important; }
.space90 { height: 90px !important; }
.space100 { height: 100px !important; }
.space110 { height: 110px !important; }
.space120 { height: 120px !important; }
.space130 { height: 130px !important; }
.space140 { height: 140px !important; }

/* Utility */
.arrow_block {
  display: none !important;
}

/* Modal */
.modal-content {
  background: rgba(30, 27, 75, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 20px !important;
}

.close {
  color: #e8e9f3 !important;
}

/* Accent Colors */
.color-default, .color-gray {
  color: #8b5cf6 !important;
}

strong {
  color: #a78bfa !important;
  font-weight: 600 !important;
}

/* Wrapper Variations */
.white-wrapper, .light-wrapper {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(20px) !important;
  border-top: 1px solid rgba(167, 139, 250, 0.1) !important;
  border-bottom: 1px solid rgba(167, 139, 250, 0.1) !important;
}

/* White wrapper inside dark wrapper - make it more visible */
#wrapper_1 .white-wrapper,
.wrapper .white-wrapper {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(45, 40, 90, 0.7) 100%) !important;
  backdrop-filter: blur(30px) !important;
  border: 1px solid rgba(167, 139, 250, 0.3) !important;
  border-radius: 24px !important;
  padding: 20px 0 !important;
  margin: 5px auto !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(167, 139, 250, 0.1) !important;
}

/* Ensure container inside white-wrapper has proper spacing */
#wrapper_1 .white-wrapper .container,
.wrapper .white-wrapper .container {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

/* Mobile adjustments for white-wrapper */
@media (max-width: 768px) {
  #wrapper_1 .white-wrapper,
  .wrapper .white-wrapper {
    padding: 20px 0 !important;
    margin: 10px 10px !important;
    border-radius: 20px !important;
  }

  #wrapper_1 .white-wrapper .container,
  .wrapper .white-wrapper .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  /* Booking page mobile adjustments */
  .availability h2 {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  
  .availability h4 {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
  
  .availability h6 {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  
  .availability p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  
  h2 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  
  h4 {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
  
  h6 {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  
  p, li {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

.bg-opacity-default {
  background: rgba(30, 27, 75, 0.4) !important;
}

.content-wrapper {
  background: transparent !important;
}

.inner {
  padding: 80px 0 !important;
}

/* Spacing Utilities */
.space10 { height: 10px !important; }
.space15 { height: 15px !important; }
.space20 { height: 20px !important; }
.space30 { height: 30px !important; }
.space40 { height: 40px !important; }
.space50 { height: 50px !important; }
.space60 { height: 60px !important; }
.space70 { height: 70px !important; }
.space80 { height: 80px !important; }
.space90 { height: 90px !important; }
.space100 { height: 100px !important; }
.space110 { height: 110px !important; }
.space120 { height: 120px !important; }
.space130 { height: 130px !important; }
.space140 { height: 140px !important; }

/* Benefits and Obstacles Row Layout */
@media (min-width: 992px) {
  #wrapper_4 .row,
  #wrapper_5 .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    grid-auto-rows: 1fr !important;
  }
  
  #wrapper_4 .col-lg-6,
  #wrapper_5 .col-lg-6 {
    display: contents !important;
  }
}

@media (max-width: 991px) {
  #wrapper_4 .row,
  #wrapper_5 .row {
    display: block !important;
  }
  
  #wrapper_4 .col-lg-6,
  #wrapper_5 .col-lg-6 {
    display: block !important;
  }
}

/* Benefit & Obstacle Items */
.benefit-item, .obstacle-item {
  background: rgba(30, 27, 75, 0.3) !important;
  border-left: 3px solid #8b5cf6 !important;
  padding: 24px !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  margin-bottom: 0 !important;
}

.benefit-item:hover, .obstacle-item:hover {
  background: rgba(30, 27, 75, 0.5) !important;
  border-left-color: #a78bfa !important;
  transform: translateX(5px) !important;
}

.benefit-content, .obstacle-content {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  height: 100% !important;
}

.benefit-title, .obstacle-title {
  color: #f3f4f6 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
  line-height: 1.4 !important;
}

.benefit-content p, .obstacle-content p {
  flex: 1 !important;
  margin: 0 !important;
}



.timeline-panel {
  background: rgba(30, 27, 75, 0.5) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 16px !important;
  padding: 18px 22px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  width: 100% !important;
}

.timeline-panel:hover {
  border-color: rgba(139, 92, 246, 0.4) !important;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2) !important;
  transform: translateY(-2px) !important;
}

.timeline-heading {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
  font-family: 'Space Grotesk', sans-serif !important;
}

.timeline-text {
  color: #cbd5e1 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* Accordion/FAQ Styles */
.accordion-wrapper {
  background: transparent !important;
}

.accordion-wrapper .card {
  background: rgba(30, 27, 75, 0.5) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  margin-bottom: 16px !important;
}

.accordion-wrapper .card-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1) !important;
  padding: 0 !important;
}

.accordion-wrapper .card-header button,
.faq-title {
  color: #f3f4f6 !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  padding: 20px 24px !important;
  text-align: left !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

.accordion-wrapper .card-header button:hover,
.faq-title:hover {
  color: #a78bfa !important;
}

.accordion-wrapper .card-header button:before,
.faq-title:before {
  color: #8b5cf6 !important;
}

.accordion-body {
  color: #cbd5e1 !important;
  padding: 20px 24px !important;
}

/* Blockquotes & Testimonials */
blockquote {
  border-left: 3px solid #a78bfa !important;
  padding-left: 20px !important;
  margin: 20px 0 !important;
  font-style: italic !important;
  color: #e8e9f3 !important;
}

blockquote p {
  color: #e8e9f3 !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

blockquote.icon {
  border-left: none !important;
  padding: 1rem !important;
  text-align: center !important;
  margin: 1.5rem 0 !important;
  background: rgba(139, 92, 246, 0.05) !important;
  border-radius: 12px !important;
}

blockquote.icon:before {
  display: none !important;
}

blockquote.icon p {
  color: #e8e9f3 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  font-style: italic !important;
  margin-bottom: 0.8rem !important;
  margin-top: 0 !important;
  padding: 0 0.5rem !important;
}

.blockquote-footer {
  color: #a78bfa !important;
  font-size: 0.65rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-weight: 700 !important;
  padding: 0 !important;
  opacity: 0.9 !important;
}

.blockquote-footer:before {
  content: "" !important;
  display: block !important;
  width: 40px !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, #a78bfa, transparent) !important;
  margin: 0 auto 0.5rem !important;
}

/* Logo styling - remove border */
img.logo {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* International phone input styling */
.iti {
  width: 100% !important;
}

.iti__country-list {
  background: rgba(30, 27, 75, 0.95) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

.iti__country {
  color: #f3f4f6 !important;
  padding: 8px 12px !important;
}

.iti__country:hover {
  background: rgba(139, 92, 246, 0.2) !important;
}

.iti__selected-flag {
  background: rgba(30, 27, 75, 0.5) !important;
  border-right: 1px solid rgba(139, 92, 246, 0.3) !important;
}

.iti__selected-flag:hover {
  background: rgba(30, 27, 75, 0.6) !important;
}

.iti__flag-container {
  background: transparent !important;
}

.iti__selected-dial-code {
  color: #f3f4f6 !important;
}

.iti__search-input {
  background: rgba(30, 27, 75, 0.8) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  color: #f3f4f6 !important;
  padding: 8px !important;
}

.iti__search-input::placeholder {
  color: #94a3b8 !important;
}

.iti__country-name {
  color: #f3f4f6 !important;
}

.iti__dial-code {
  color: #a78bfa !important;
}

/* Stripe card element styling for dark theme */
.form-control#card-element {
  background: rgba(30, 27, 75, 0.5) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
}

.form-control#card-element:hover {
  border-color: rgba(139, 92, 246, 0.5) !important;
  background: rgba(30, 27, 75, 0.6) !important;
}

.StripeElement--focus + .form-control,
.form-control#card-element:focus-within {
  border-color: #a78bfa !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
  background: rgba(30, 27, 75, 0.6) !important;
}

/* Ensure Stripe elements are interactive */
#card-element *,
.StripeElement *,
.__PrivateStripeElement,
.__PrivateStripeElement * {
  pointer-events: auto !important;
}

.form-control {
  background: rgba(30, 27, 75, 0.5) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  color: #f3f4f6 !important;
  font-size: 0.7rem !important;
}

.form-control:focus {
  background: rgba(30, 27, 75, 0.6) !important;
  border-color: #a78bfa !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
  color: #ffffff !important;
}

.form-control::placeholder {
  color: #94a3b8 !important;
}

label.col-form-label {
  color: #f3f4f6 !important;
  font-weight: 500 !important;
}

/* Form box styling */
.box.bg-white.shadow {
  background: rgba(30, 27, 75, 0.4) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

/* Select elements */
select {
  background: rgba(30, 27, 75, 0.5) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  color: #f3f4f6 !important;
}

select:focus {
  border-color: #a78bfa !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
}

/* Button styling */
.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 16px rgba(139, 92, 246, 0.4) !important;
}

/* Benefits list icons */
.icofont-verification-check {
  color: #a78bfa !important;
  margin-right: 10px !important;
}

/* Text content */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff !important;
}

p {
  color: #cbd5e1 !important;
}

/* Payment details label */
#reserva {
  color: #f3f4f6 !important;
}

/* Security icons and SVG */
svg {
  color: #a78bfa !important;
  stroke: #a78bfa !important;
}

/* Secure payment text */
.col-form-label svg path {
  stroke: #a78bfa !important;
}

/* Radio buttons */
input[type="radio"] {
  accent-color: #8b5cf6 !important;
}

/* Checkbox */
input[type="checkbox"] {
  accent-color: #8b5cf6 !important;
}

/* Hidden honeypot field remains hidden */
input[name="website"] {
  display: none !important;
}

/* Payment options labels */
#amountPagos,
#amountPagosAnual {
  color: #f3f4f6 !important;
}

/* Custom radio labels */
label[for="customRadio1"],
label[for="customRadio2"] {
  color: #f3f4f6 !important;
  cursor: pointer !important;
  transition: color 0.3s ease !important;
}

label[for="customRadio1"]:hover,
label[for="customRadio2"]:hover {
  color: #a78bfa !important;
}

/* Discount code field and button */
#descuento {
  background: rgba(30, 27, 75, 0.5) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  color: #f3f4f6 !important;
}

.btn.bg-gray {
  background: rgba(139, 92, 246, 0.3) !important;
  color: #ffffff !important;
  border: 1px solid rgba(139, 92, 246, 0.4) !important;
  transition: all 0.3s ease !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.85rem !important;
}

.btn.bg-gray:hover {
  background: rgba(139, 92, 246, 0.5) !important;
  border-color: #a78bfa !important;
}

@media (max-width: 768px) {
  .btn.bg-gray {
    padding: 0.4rem 0.7rem !important;
    font-size: 0.7rem !important;
    min-width: auto !important;
    width: auto !important;
    display: inline-block !important;
  }
  
  #descuento {
    font-size: 0.8rem !important;
    padding: 0.4rem !important;
  }
}

/* Addon checkboxes styling */
.custom-control-label {
  color: #f3f4f6 !important;
}

.custom-control-input:checked ~ .custom-control-label {
  color: #a78bfa !important;
}

/* Addon images */
.custom-control-label img {
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 8px !important;
}

.testimonial-item {
  transition: all 0.3s ease !important;
  margin-bottom: 20px !important;
}

.testimonial-item:hover {
  transform: translateY(-5px) !important;
}

.testimonial-item .box {
  background: rgba(30, 27, 75, 0.4) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(139, 92, 246, 0.15) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  min-height: auto !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
}

.testimonial-item .box:hover {
  background: rgba(30, 27, 75, 0.5) !important;
  border-color: rgba(167, 139, 250, 0.25) !important;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.25) !important;
  transform: translateY(-4px) !important;
}

.testimonial-text {
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  font-style: italic !important;
  margin-bottom: 20px !important;
  flex-grow: 1 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 7 !important;
  -webkit-box-orient: vertical !important;
}

.testimonial-content-text {
  background: transparent !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
}

.person-info {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 6px !important;
}

.person-avatar {
  margin-right: 14px !important;
  flex-shrink: 0 !important;
}

.person-avatar img,
.person-avatar .avatar-placeholder {
  width: 56px !important;
  height: 56px !important;
}

.person-name {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

.person-role {
  color: #cbd5e1 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: transparent !important;
  -webkit-text-fill-color: #cbd5e1 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

/* If person-role is inside a badge/span with purple background, make it readable */
.badge .person-role, span.person-role {
  background: transparent !important;
  color: #ffffff !important;
}

/* Testimonial role badges - more subtle and neutral */
.testimonial-item .badge, .testimonial-item span.badge {
  background: rgba(71, 85, 105, 0.25) !important;
  color: #9ca3af !important;
  -webkit-text-fill-color: #9ca3af !important;
  border: 1px solid rgba(100, 116, 139, 0.3) !important;
  padding: 5px 12px !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  font-size: 10px !important;
  display: inline-block !important;
  margin-top: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  line-height: 1.2 !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
}

.testimonial-item .badge:hover, .testimonial-item span.badge:hover {
  background: rgba(71, 85, 105, 0.35) !important;
  border-color: rgba(100, 116, 139, 0.4) !important;
  color: #cbd5e1 !important;
  -webkit-text-fill-color: #cbd5e1 !important;
}

.person-avatar img {
  border-radius: 50% !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
}

.person-avatar img:hover {
  transform: scale(1.05) !important;
  border-color: rgba(167, 139, 250, 0.5) !important;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3) !important;
}

.avatar-placeholder {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
  color: white !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  transition: all 0.3s ease !important;
}

.avatar-placeholder:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3) !important;
  border-color: rgba(167, 139, 250, 0.5) !important;
}

/* Bio/Profile Image - Hero Image */
#wrapper_1 img.hero-image,
#wrapper_1 figure img,
.bio-image img,
.profile-image img {
  border-radius: 24px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 
              0 0 0 3px rgba(167, 139, 250, 0.3),
              0 0 80px rgba(139, 92, 246, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(167, 139, 250, 0.3) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
}

#wrapper_1 img.hero-image:hover,
#wrapper_1 figure img:hover,
.bio-image img:hover,
.profile-image img:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 40px 120px rgba(139, 92, 246, 0.6), 
              0 0 0 4px rgba(167, 139, 250, 0.5),
              0 0 120px rgba(139, 92, 246, 0.35) !important;
  border-color: rgba(167, 139, 250, 0.6) !important;
}

/* Timeline improvements for company page */
.timeline-item {
  margin-bottom: 35px !important;
}

.timeline-content {
  padding: 18px !important;
}

.timeline-date {
  color: #a78bfa !important;
  font-weight: 700 !important;
  font-size: 1.1em !important;
  margin-bottom: 8px !important;
}

.timeline-title {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 1.3em !important;
  margin-bottom: 10px !important;
}

.timeline-description {
  color: #cbd5e1 !important;
  line-height: 1.7 !important;
  margin-bottom: 12px !important;
}

.timeline-marker {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.2) !important;
}

/* Team stats improvements */
.counter h3,
.counter-value {
  background: linear-gradient(135deg, #ffffff 0%, #e8e9f3 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 2.75rem !important;
  font-weight: 800 !important;
  margin-bottom: 8px !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  transition: all 0.4s ease !important;
  display: inline-block !important;
}

.counter p,
.counter-label {
  color: #94a3b8 !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.5px !important;
}

/* Counter container */
.counter {
  text-align: center !important;
  padding: 16px 10px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.counter::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) scaleX(0) !important;
  width: 40px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #a78bfa 0%, #8b5cf6 100%) !important;
  transition: transform 0.3s ease !important;
  border-radius: 2px !important;
}

.counter:hover::after {
  transform: translateX(-50%) scaleX(1) !important;
}

.counter:hover {
  transform: translateY(-3px) !important;
}

.counter:hover h3,
.counter:hover .counter-value {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  transform: scale(1.05) !important;
}

/* Gallery images improvements */
.img-fluid.rounded.shadow {
  border-radius: 16px !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
}

.img-fluid.rounded.shadow:hover {
  transform: translateY(-5px) scale(1.03) !important;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4) !important;
  border-color: rgba(167, 139, 250, 0.5) !important;
}

.fas.fa-quote-left, .fas.fa-quote-right {
  color: #a78bfa !important;
  opacity: 0.25 !important;
  font-size: 14px !important;
}

.fas.fa-quote-left {
  margin-right: 6px !important;
  vertical-align: top !important;
}

.fas.fa-quote-right {
  margin-left: 6px !important;
  vertical-align: bottom !important;
}

/* Badge */
.badge {
  background: rgba(100, 116, 139, 0.15) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(100, 116, 139, 0.25) !important;
  padding: 8px 14px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
}

.badge:hover {
  background: rgba(167, 139, 250, 0.2) !important;
  border-color: rgba(167, 139, 250, 0.4) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25) !important;
  color: #e8e9f3 !important;
}

/* Badge variants for different contexts */
.badge-location,
.badge-company {
  background: rgba(71, 85, 105, 0.2) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(100, 116, 139, 0.3) !important;
  font-size: 12px !important;
  padding: 7px 12px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  white-space: nowrap !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(8px) !important;
}

.badge-location:hover,
.badge-company:hover {
  background: rgba(100, 116, 139, 0.3) !important;
  border-color: rgba(148, 163, 184, 0.4) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 10px rgba(71, 85, 105, 0.3) !important;
  color: #e8e9f3 !important;
}

/* Specific styling for location and company badges in cards */
.testimonial-card .badge-location,
.opinion-card .badge-location,
.box .badge-location {
  background: rgba(71, 85, 105, 0.2) !important;
  border-color: rgba(100, 116, 139, 0.3) !important;
  color: #cbd5e1 !important;
}

.testimonial-card .badge-company,
.opinion-card .badge-company,
.box .badge-company {
  background: rgba(71, 85, 105, 0.2) !important;
  border-color: rgba(100, 116, 139, 0.3) !important;
  color: #cbd5e1 !important;
}

/* Badge groups (when multiple badges are together) */
.badge-group {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 8px !important;
}

/* Testimonial badges - more subtle */
.testimonial-item .badge {
  background: rgba(71, 85, 105, 0.3) !important;
  color: #e8e9f3 !important;
  border: 1px solid rgba(100, 116, 139, 0.4) !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100% !important;
  line-height: 1.4 !important;
  padding: 6px 12px !important;
  font-size: 11px !important;
}

.badge.text-white {
  color: white !important;
}

.badge-info {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
}

/* Override inline badge backgrounds */
[style*="background-color: rgb(191, 39, 163)"] {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
}

/* Role bars/pills - these are the purple bars in role category boxes */
.box span:not(.sub-arrow):not(.badge):not(.person-role):not(.person-location):not(.person-origin):not(.company-badge):not(.person-meta span):not(.testimonial-content-text):not(code):not(code *):not(.CodeMirror):not(.CodeMirror *), 
.card span:not(.sub-arrow):not(.badge):not(.person-role):not(.person-location):not(.person-origin):not(.company-badge):not(.person-meta span):not(.testimonial-content-text):not(code):not(code *):not(.CodeMirror):not(.CodeMirror *) {
  color: transparent !important;
  background: linear-gradient(135deg, #b8a4ff 0%, #9d7xff 100%) !important;
  border-radius: 12px !important;
  display: inline-block !important;
  padding: 10px 20px !important;
  min-height: 36px !important;
  min-width: 80px !important;
  margin: 6px !important;
}

/* If spans have actual text content, make it visible */
.box span:not(:empty):not(.sub-arrow):not(.badge):not(.person-role):not(.person-location):not(.person-origin):not(.company-badge):not(.person-meta span):not(code):not(code *):not(.CodeMirror):not(.CodeMirror *), 
.card span:not(:empty):not(.sub-arrow):not(.badge):not(.person-role):not(.person-location):not(.person-origin):not(.company-badge):not(.person-meta span):not(code):not(code *):not(.CodeMirror):not(.CodeMirror *) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

/* Credibility Section */
.credibility-section img {
  filter: grayscale(0%) brightness(0.8) !important;
  opacity: 0.7 !important;
  transition: all 0.3s ease !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  padding: 8px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  display: block !important;
  margin: 0 auto !important;
  max-height: 80px !important;
  width: auto !important;
  object-fit: contain !important;
}

.credibility-section img:hover {
  filter: grayscale(0%) brightness(1) !important;
  opacity: 1 !important;
  transform: scale(1.05) translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

/* Clients/Logos Carousel */
.clients img {
  filter: brightness(1.2) !important;
  opacity: 0.8 !important;
  transition: all 0.3s ease !important;
  max-height: 80px !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  padding: 8px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  display: block !important;
  margin: 0 auto !important;
}

.clients img:hover {
  opacity: 1 !important;
  transform: scale(1.05) translateY(-2px) !important;
  filter: brightness(1.4) !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

/* Read More Links */
.read-more-link {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.read-more-link a {
  color: #a78bfa !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  opacity: 0.8 !important;
}

.read-more-link a:hover {
  color: #8b5cf6 !important;
  text-decoration: underline !important;
  transform: translateX(3px) !important;
  opacity: 1 !important;
}

/* Image Blob - Modern Card Style */
.img-blob,
.img-blob.blob1 {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(167, 139, 250, 0.2) !important;
  border-radius: 24px !important;
  padding: 20px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.img-blob::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent 0%, rgba(167, 139, 250, 0.5) 50%, transparent 100%) !important;
}

.img-blob:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(167, 139, 250, 0.35) !important;
  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
  transform: translateY(-8px) !important;
}

.img-blob img,
.img-blob.blob1 img {
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  transition: all 0.4s ease !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  filter: brightness(1.05) contrast(1.1) saturate(1.05) !important;
  object-fit: cover !important;
  object-position: center !important;
}

.img-blob:hover img,
.img-blob.blob1:hover img {
  transform: scale(1.02) !important;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.25) !important;
  filter: brightness(1.08) contrast(1.15) saturate(1.1) !important;
}

/* Plyr Video Player */
.plyr {
  border-radius: 16px !important;
  overflow: hidden !important;
}

.plyr__control--overlaid {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
}

/* Additional Links */
a {
  color: #a78bfa !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

a:hover {
  color: #8b5cf6 !important;
}

/* Visual Hierarchy - Lists */
.icon-list li, .bullet-default li {
  color: #cbd5e1 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin-bottom: 16px !important;
}

.icon-list li strong, .bullet-default li strong {
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* Standard lists */
ul li, ol li {
  color: #cbd5e1 !important;
  margin-bottom: 10px !important;
}

ul, ol {
  padding-left: 24px !important;
}

/* Benefits & Obstacles Cards */
.benefit-item, .obstacle-item {
  background: rgba(30, 27, 75, 0.5) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 16px !important;
  padding: 30px !important;
  transition: all 0.3s ease !important;
}

.benefit-item:hover, .obstacle-item:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(139, 92, 246, 0.4) !important;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2) !important;
}

.benefit-title, .obstacle-title {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  font-family: 'Space Grotesk', sans-serif !important;
}

/* Ensure proper text colors for all elements */
.color-gray, .color-default {
  color: #cbd5e1 !important;
}

.text-muted {
  color: #9ca3af !important;
}

/* Override any default dark backgrounds */
.bg-dark, .bg-gray {
  background: rgba(30, 27, 75, 0.5) !important;
  backdrop-filter: blur(20px) !important;
}

/* Ensure white wrapper sections have correct styling */
.white-wrapper, .light-wrapper {
  background: rgba(30, 27, 75, 0.3) !important;
}

.bg-opacity-default {
  background: rgba(30, 27, 75, 0.4) !important;
}

/* Inner padding - balanced spacing */
.inner {
  padding: 80px 0 !important;
}

#wrapper_2 .inner {
  padding: 0 !important;
}

/* Important overrides for visibility */
.inner p, .content-wrapper p, article p {
  color: #cbd5e1 !important;
}

.inner h1, .inner h2, .inner h3, .inner h4, .inner h5, .inner h6,
.content-wrapper h1, .content-wrapper h2, .content-wrapper h3, .content-wrapper h4, .content-wrapper h5, .content-wrapper h6 {
  color: #ffffff !important;
}

/* Ensure all text elements are visible */
div, section, article {
  color: #e8e9f3 !important;
}

/* Numbers and counters */
.counter-wrapper .counter {
  color: #ffffff !important;
  font-weight: 800 !important;
}

/* Stats/Numbers */
.counter, .display-1, .display-2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: transparent !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

/* Counter animation preparation */
[data-counter],
.counter-number,
.count-number {
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

/* Number boxes with blue background */
[style*="background-color: rgb(59, 130, 246)"],
[style*="background-color: rgb(37, 99, 235)"],
[style*="background-color: #3b82f6"],
[style*="background-color: #2563eb"] {
  color: #ffffff !important;
}

[style*="background-color: rgb(59, 130, 246)"] *,
[style*="background-color: rgb(37, 99, 235)"] *,
[style*="background-color: #3b82f6"] *,
[style*="background-color: #2563eb"] * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Text alignment helpers */
.text-center {
  text-align: center !important;
}

/* Ensure all wrappers have proper spacing - optimized for holo */
#wrapper_1, #wrapper_2, #wrapper_3, #wrapper_4, #wrapper_5, #wrapper_6, #wrapper_customers {
  padding: 80px 0 !important;
}

/* First wrapper - minimal padding for regular pages */
#wrapper_1 {
  padding: 10px 0 10px 0 !important;
}

/* Hero wrapper only for homepage - use #wrapper_hero for hero sections */
#wrapper_hero,
.home #wrapper_1:first-of-type {
  padding: 0px 0 80px 0 !important;
}

/* When wrapper_1 contains white-wrapper, reduce padding even more */
#wrapper_1:has(.white-wrapper) {
  padding: 5px 0 5px 0 !important;
}

/* When wrapper_1 has direct content before white-wrapper (like webinar) */
#wrapper_1 > h4,
#wrapper_1 > h3,
#wrapper_1 > .text-center {
  margin-top: 10px !important;
}

/* Steps wrapper with minimal top padding */
#wrapper_steps {
  padding: 30px 0 50px 0 !important;
}

/* Remove extra margin from elements before steps */
#wrapper_steps .inner {
  padding-top: 0 !important;
}

#cta, #cta2, #cta3 {
  text-align: center !important;
}

/* Footer */
footer {
  background: rgba(15, 15, 35, 0.98) !important;
  backdrop-filter: blur(30px) !important;
  border-top: 1px solid rgba(167, 139, 250, 0.2) !important;
  padding: 100px 0 60px !important;
  position: relative !important;
  overflow: hidden !important;
}

footer::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent 0%, #a78bfa 50%, transparent 100%) !important;
}

footer .logo {
  max-height: 60px !important;
  filter: brightness(1.1) !important;
  margin-bottom: 24px !important;
}

/* Footer sections styling */
footer .widget {
  margin-bottom: 40px !important;
}

footer h5, footer h6 {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  margin-bottom: 24px !important;
  font-family: 'Inter', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  position: relative !important;
  padding-bottom: 12px !important;
}

footer h5::after, footer h6::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 40px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #a78bfa 0%, #8b5cf6 100%) !important;
  border-radius: 2px !important;
}

footer p {
  color: #9ca3af !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin-bottom: 20px !important;
}

footer a {
  color: #cbd5e1 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}

footer a:hover {
  color: #a78bfa !important;
}

/* Only add arrow to text links, not social icons */
footer ul li a:not(.social li a) {
  display: inline-block !important;
  position: relative !important;
  padding-left: 0 !important;
}

footer ul li a:not(.social li a):hover {
  transform: translateX(5px) !important;
}

footer ul li a:not(.social li a)::before {
  content: '→' !important;
  position: absolute !important;
  left: -20px !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
}

footer ul li a:not(.social li a):hover::before {
  opacity: 1 !important;
  left: -16px !important;
}

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

footer ul li {
  margin-bottom: 14px !important;
  color: #cbd5e1 !important;
  position: relative !important;
  padding-left: 0 !important;
}

/* Contact info special styling */
footer .contact-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

footer .contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 12px !important;
  background: rgba(167, 139, 250, 0.05) !important;
  border: 1px solid rgba(167, 139, 250, 0.1) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

footer .contact-item:hover {
  background: rgba(167, 139, 250, 0.1) !important;
  border-color: rgba(167, 139, 250, 0.2) !important;
  transform: translateY(-2px) !important;
}

footer .contact-item i {
  color: #a78bfa !important;
  font-size: 18px !important;
  min-width: 24px !important;
  margin-top: 2px !important;
}

footer .contact-item a,
footer .contact-item span {
  color: #cbd5e1 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

footer .contact-item a:hover {
  color: #a78bfa !important;
  transform: none !important;
}

footer .contact-item a:hover::before {
  display: none !important;
}

/* Social Icons */
.social {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

.social li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.social li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(167, 139, 250, 0.1) !important;
  border: 1px solid rgba(167, 139, 250, 0.2) !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.social li a::before {
  content: none !important;
  display: none !important;
}

.social li a:hover {
  background: rgba(167, 139, 250, 0.25) !important;
  border-color: rgba(167, 139, 250, 0.4) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4) !important;
}

.social li a i {
  color: #a78bfa !important;
  font-size: 20px !important;
  transition: all 0.3s ease !important;
}

.social li a:hover i {
  color: #ffffff !important;
  transform: scale(1.1) !important;
}

/* Ensure footer widget alignment */
footer .widget {
  text-align: left !important;
}

footer .row {
  text-align: left !important;
}

footer .col-md-3, footer .col-md-4, footer .col-lg-3 {
  text-align: left !important;
}

/* Footer Bottom */
footer .text-muted {
  color: #9ca3af !important;
  font-size: 13px !important;
}

/* Contact Button in Footer */
footer .btn {
  background: linear-gradient(135deg, #c026d3 0%, #9333ea 100%) !important;
  border: 1px solid rgba(147, 51, 234, 0.4) !important;
  color: white !important;
  font-size: 12px !important;
  padding: 16px 20px !important;
  font-weight: 600 !important;
}

footer .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.5) !important;
}

/* Cookie Banner */
#cookie-banner {
  background: rgba(15, 15, 35, 0.98) !important;
  backdrop-filter: blur(30px) !important;
  border-top: 1px solid rgba(167, 139, 250, 0.2) !important;
  padding: 20px !important;
  z-index: 99999 !important;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

#cookie-banner a {
  color: #a78bfa !important;
  text-decoration: underline !important;
}

#cookie-banner .btn {
  font-size: 13px !important;
  padding: 10px 24px !important;
  margin: 4px !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

/* Mobile Responsive */
@media screen and (max-width: 1024px) {
  body {
    padding-top: 70px !important;
  }

  .navbar {
    padding: 8px 0 !important;
  }

  .navbar-brand img.logo {
    max-height: 45px !important;
  }

  .nav-item a, .nav-link {
    font-size: 14px !important;
    padding: 8px 14px !important;
  }

  #titular {
    font-size: 42px !important;
    line-height: 1.2 !important;
    margin-top: 20px !important;
  }

  h1, h2, h3, h4, h5, h6, .display-3 {
    font-size: 30px !important;
    line-height: 1.3 !important;
  }

  p, li {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .btn {
    padding: 12px 24px !important;
    font-size: 15px !important;
  }

  .box, .card {
    margin-bottom: 20px !important;
  }

  .timeline-wrapper {
    padding: 10px 0 !important;
  }

  .timeline-wrapper::before {
    left: 48px !important;
  }

  .timeline-badge {
    left: 20.5px !important;
    top: 15px !important;
    transform: translateX(0) translateY(0) !important;
    width: 55px !important;
    height: 55px !important;
  }

  .timeline-badge span {
    font-size: 20px !important;
    font-weight: 700 !important;
  }

  .timeline-left, .timeline-right {
    width: 100% !important;
    float: none !important;
    text-align: left !important;
    padding: 12px 16px !important;
    padding-left: 95px !important;
    margin: 0 !important;
  }

  .timeline-step {
    margin-bottom: 35px !important;
    min-height: 85px !important;
  }

  .timeline-panel {
    padding: 18px 20px !important;
  }

  .timeline-heading {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .timeline-text {
    font-size: 14px !important;
  }

  .testimonial-item .box {
    padding: 24px !important;
    gap: 16px !important;
  }

  .testimonial-text,
  .testimonial-content p,
  .testimonial-card p,
  .opinion-card p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    -webkit-line-clamp: 6 !important;
    color: #ffffff !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
  }

  .testimonial-item .badge {
    font-size: 10px !important;
    padding: 4px 10px !important;
  }

  .person-name {
    font-size: 14px !important;
  }

  .person-avatar img,
  .person-avatar .avatar-placeholder {
    width: 50px !important;
    height: 50px !important;
  }
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 65px !important;
  }

  .navbar {
    padding: 6px 0 !important;
  }

  .navbar-brand img.logo {
    max-height: 40px !important;
  }

  .nav-item a, .nav-link {
    font-size: 15px !important;
    padding: 12px 18px !important;
  }

  .offcanvas-nav .nav-item {
    margin: 4px 12px !important;
  }

  .offcanvas-nav {
    width: 280px !important;
    max-width: 90vw !important;
  }

  #titular {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  #subtitular, #titular2 {
    font-size: 15px !important;
  }
  
  /* Blog page improvements for mobile */
  .post-title {
    font-size: 1.1rem !important;
  }
  
  .blog-card-title.post-title {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    min-height: 70px !important;
  }
  
  /* Blog header title */
  #wrapper_1 .box .post-title {
    font-size: 1.2rem !important;
  }
  
  /* Newsletter box - move it down */
  #wrapper_1 .row.mb-4 {
    order: 2 !important;
    margin-top: 1rem !important;
  }
  
  /* Filter section - move it up */
  #wrapper_1 .row.mb-3 {
    order: 1 !important;
  }
  
  #wrapper_1 > .container {
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Newsletter section on mobile */
  .newsletter-form-container {
    width: 100% !important;
    margin-top: 0.5rem !important;
  }
  
  .newsletter-form {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  
  .newsletter-form input {
    width: 100% !important;
    min-width: auto !important;
  }
  
  .newsletter-form button {
    width: 100% !important;
    padding: 10px !important;
  }
  
  /* Blog filters on mobile - keep in same line */
  .category-filter,
  .date-filters {
    flex: 1 1 auto !important;
  }
  
  .category-filter .filter-buttons {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  
  .category-filter .filter-buttons::-webkit-scrollbar {
    display: none !important;
  }
  
  .date-filters {
    flex-wrap: nowrap !important;
    gap: 4px !important;
    margin-left: auto !important;
  }
  
  .date-filters .select-wrapper {
    flex-shrink: 0 !important;
  }
  
  .date-filters .select-wrapper select {
    font-size: 0.85rem !important;
    padding: 4px 8px !important;
  }
  
  .post-count-badge {
    font-size: 0.8rem !important;
    padding: 4px 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  
  /* Company page - more logos per row on mobile */
  #wrapper_3 .row .col-6 {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
  }

  h2, .display-3 {
    font-size: 28px !important;
  }

  #benefits, #obstacles, #testimonials, #warranty, #biotitle, #steps, #customerstitle, #medios {
    font-size: 32px !important;
    margin-bottom: 25px !important;
  }

  #steps {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }

  .inner {
    padding: 40px 0 !important;
  }

  #wrapper_steps .inner {
    padding-top: 0 !important;
  }

  #wrapper_1, #wrapper_2, #wrapper_3, #wrapper_4, #wrapper_5, #wrapper_6, #wrapper_customers {
    padding: 50px 0 !important;
  }

  #wrapper_1 {
    padding: 15px 0 !important;
  }

  /* When wrapper_1 contains white-wrapper on mobile */
  #wrapper_1:has(.white-wrapper) {
    padding: 10px 0 !important;
  }

  /* Hero padding on mobile for homepage only */
  #wrapper_hero,
  .home #wrapper_1:first-of-type {
    padding: 10px 0 30px 0 !important;
  }

  #wrapper_steps {
    padding: 20px 0 30px 0 !important;
  }

  .space140 { height: 80px !important; }
  .space130 { height: 75px !important; }
  .space120 { height: 70px !important; }
  .space110 { height: 65px !important; }
  .space100 { height: 60px !important; }
  .space90 { height: 55px !important; }
  .space80 { height: 50px !important; }
  .space70 { height: 45px !important; }
  .space60 { height: 40px !important; }
  .space50 { height: 35px !important; }
  .space40 { height: 30px !important; }
  .space30 { height: 25px !important; }
  .space20 { height: 20px !important; }
  .space10 { height: 10px !important; }

  /* Hide first space120 in wrapper_hero/wrapper_1 on mobile */
  #wrapper_hero > div > div.space120:first-of-type,
  #wrapper_hero > .container > .space120:first-child,
  #wrapper_1 > div > div.space120:first-of-type,
  #wrapper_1 > .container > .space120:first-child,
  #wrapper_1 > .inner > .space120:first-child {
    display: none !important;
  }

  .btn {
    font-size: 16px !important;
    padding: 14px 32px !important;
  }

  .testimonial-item .box {
    min-height: auto !important;
    padding: 20px !important;
    gap: 12px !important;
    margin: 0 5px !important;
  }
  
  /* Reset grid to single column on mobile */
  #wrapper_4 .row,
  #wrapper_5 .row {
    display: block !important;
  }
  
  #wrapper_4 .col-lg-6,
  #wrapper_5 .col-lg-6 {
    display: block !important;
  }
  
  .benefit-item, .obstacle-item {
    height: auto !important;
    padding: 18px !important;
    margin-bottom: 15px !important;
  }
  
  .benefit-title, .obstacle-title {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }
  
  .benefit-content p, .obstacle-content p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .testimonial-text,
  .testimonial-content p,
  .testimonial-card p,
  .opinion-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    -webkit-line-clamp: 5 !important;
    margin-bottom: 16px !important;
    color: #ffffff !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
  }

  .testimonial-item .badge {
    font-size: 9px !important;
    padding: 4px 8px !important;
  }

  .person-name {
    font-size: 13px !important;
  }

  .person-avatar img,
  .person-avatar .avatar-placeholder {
    width: 48px !important;
    height: 48px !important;
  }

  /* Owl Carousel dots - prevent overflow */
  .owl-carousel .owl-dots {
    margin-top: 25px !important;
    padding: 0 15px !important;
    text-align: center !important;
  }

  .owl-carousel .owl-dot {
    margin: 0 4px !important;
  }

  .owl-carousel .owl-dot span {
    width: 8px !important;
    height: 8px !important;
  }

  /* Carousel container */
  .carousel.owl-carousel {
    margin: 0 -10px !important;
    padding: 0 10px !important;
  }

  .fas.fa-quote-left, .fas.fa-quote-right {
    font-size: 12px !important;
  }

  .img-blob {
    padding: 16px !important;
    border-radius: 20px !important;
    margin: 0 10px !important;
  }

  .img-blob img {
    border-radius: 12px !important;
  }

  .dropdown-menu {
    max-width: calc(100vw - 40px) !important;
  }

  /* Counter/Stats numbers - reduce size and add spacing on mobile */
  .counter h3,
  .counter .color-default h3,
  .counter-value {
    font-size: 2rem !important;
    line-height: 1 !important;
    margin-bottom: 6px !important;
    word-break: break-word !important;
  }

  .counter p,
  .counter-label {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
  }

  /* Add padding between counter columns on mobile */
  .counter .col-4,
  .counter .col-6 {
    padding-left: 8px !important;
    padding-right: 8px !important;
    margin-bottom: 20px !important;
  }
  
  .counter {
    padding: 12px 8px !important;
  }
  
  .counter::after {
    width: 30px !important;
  }

  /* Reduce space40 inside counters on mobile */
  .counter .space40 {
    height: 0 !important;
    display: none !important;
  }

  /* Logos - reduce to 3 per row on mobile */
  .clients img {
    max-height: 40px !important;
    max-width: 90px !important;
    margin: 12px 8px !important;
  }

  /* Clients container - better spacing */
  .clients,
  #wrapper_customers .row,
  #wrapper_customers .inner {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* If using owl-carousel for logos */
  .clients.owl-carousel {
    padding: 0 5px !important;
  }

  /* Reduce size of large headings like "FRONTEND DEVELOPMENT" */
  h2.display-3,
  h3.display-3,
  .display-3 {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
  }

  /* Badges inside display headings */
  .display-3 .badge,
  h2 .badge,
  h3 .badge {
    font-size: 10px !important;
    padding: 4px 10px !important;
    display: block !important;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
  }

  /* Footer alignment on mobile */
  footer {
    padding: 60px 0 40px !important;
  }

  footer .widget {
    margin-bottom: 35px !important;
    padding-left: 0 !important;
    text-align: left !important;
  }

  footer h5, footer h6 {
    font-size: 13px !important;
    margin-bottom: 18px !important;
    padding-left: 0 !important;
    text-align: left !important;
  }

  footer ul {
    padding-left: 0 !important;
    text-align: left !important;
  }

  footer ul li {
    text-align: left !important;
    padding-left: 0 !important;
  }

  footer .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  footer .col-md-3,
  footer .col-lg-3,
  footer [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Scroll Effect - Add this with JavaScript */
.navbar.scrolled {
  background: rgba(15, 15, 35, 0.98) !important;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.4) !important;
  padding: 8px 0 !important;
}

.navbar.scrolled .navbar-brand img.logo {
  max-height: 45px !important;
}

/* Force override all conflicting styles */
* {
  scrollbar-width: thin !important;
  scrollbar-color: #8b5cf6 rgba(15, 15, 35, 0.5) !important;
}

*::-webkit-scrollbar {
  width: 10px !important;
}

*::-webkit-scrollbar-track {
  background: rgba(15, 15, 35, 0.5) !important;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
  border-radius: 5px !important;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
}

/* Final typography overrides to ensure visibility */
p:not(.btn):not(.badge) {
  color: #cbd5e1 !important;
}

li:not(.nav-item):not(.social li) {
  color: #cbd5e1 !important;
}

/* Bio/about section text */
#biodescription, #biodescription p, #biodescription li {
  color: #cbd5e1 !important;
}

/* Override any conflicting wrapper backgrounds */
.wrapper:not(.white-wrapper):not(.light-wrapper) {
  background: transparent !important;
}

/* Ensure proper link colors everywhere */
.wrapper a:not(.btn):not(.nav-link):not(.dropdown-item), .inner a:not(.btn):not(.nav-link):not(.dropdown-item), .content-wrapper a:not(.btn):not(.nav-link):not(.dropdown-item) {
  color: #a78bfa !important;
}

.wrapper a:not(.btn):not(.nav-link):not(.dropdown-item):hover, .inner a:not(.btn):not(.nav-link):not(.dropdown-item):hover, .content-wrapper a:not(.btn):not(.nav-link):not(.dropdown-item):hover {
  color: #8b5cf6 !important;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Inter Variable' !important;
font-weight: 700 !important;
}
p {
font-family: 'Inter Variable' !important;
font-weight: 400 !important;
}
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/inter:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
