/* ============================================
   IG1 Corporate Website — Shared Styles
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: #32373c;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }

/* === AI Banner (below navbar on index) === */
.ai-banner {
  background: linear-gradient(90deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%);
  padding: 20px 24px;
  text-align: center;
}
.ai-banner a {
  color: #d0d0d8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}
.ai-banner a:hover { color: #ffffff; }
.ai-banner .ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #E6007E, #8B2FFF);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ai-banner strong {
  color: #00E5FF;
  font-weight: 700;
}
/* AI banner mobile: thinner, smaller text, hide arrow */
@media (max-width: 767px) {
  .ai-banner { padding: 10px 16px; }
  .ai-banner a { font-size: 0.78rem; gap: 6px; }
  .ai-banner-arrow { display: none !important; }
}

/* === Navbar === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.6s ease, background 0.6s ease, backdrop-filter 0.6s ease, -webkit-backdrop-filter 0.6s ease, border-color 0.6s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}
/* Transparent navbar for hero pages (index) */
.navbar.navbar-transparent {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.navbar.navbar-transparent .navbar-links a {
  color: rgba(255,255,255,0.7);
}
.navbar.navbar-transparent .navbar-links a:hover {
  color: #ffffff;
}
.navbar.navbar-transparent .navbar-links a.active {
  color: #ffffff;
}
.navbar.navbar-transparent .navbar-cta > a:not(.btn-primary) {
  color: rgba(255,255,255,0.7);
}
.navbar.navbar-transparent .navbar-cta > a:not(.btn-primary):hover {
  color: #ffffff;
}
.navbar.navbar-transparent .nav-dropdown > a .chevron {
  stroke: rgba(255,255,255,0.7);
}
/* Dark dropdown on transparent navbar */
.navbar.navbar-transparent .dropdown-menu {
  background: rgba(13, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.navbar.navbar-transparent .dropdown-menu a {
  color: rgba(255, 255, 255, 0.7);
}
.navbar.navbar-transparent .dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(189, 219, 32, 0.15);
}
.navbar.navbar-transparent .dropdown-menu a.active {
  color: #ffffff;
}
/* Revert to light dropdown when scrolled */
.navbar.navbar-transparent.scrolled .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border-color: #eeeef0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}
.navbar.navbar-transparent.scrolled .dropdown-menu a {
  color: #5d5d6c;
}
.navbar.navbar-transparent.scrolled .dropdown-menu a:hover {
  color: #0d0d1a;
  background: rgba(189, 219, 32, 0.1);
}
.navbar.navbar-transparent.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}
.navbar.navbar-transparent.scrolled .navbar-links a {
  color: #5d5d6c;
}
.navbar.navbar-transparent.scrolled .navbar-links a:hover {
  color: #0d0d1a;
}
.navbar.navbar-transparent.scrolled .navbar-links a.active {
  color: #0d0d1a;
}
.navbar.navbar-transparent.scrolled .navbar-cta > a:not(.btn-primary) {
  color: #5d5d6c;
}
.navbar.navbar-transparent.scrolled .navbar-cta > a:not(.btn-primary):hover {
  color: #0d0d1a;
}
.navbar.navbar-transparent.scrolled .nav-dropdown > a .chevron {
  stroke: currentColor;
}
.navbar.navbar-transparent .navbar-logo img {
  filter: brightness(1);
  transition: filter 0.3s ease;
}
.navbar.navbar-transparent.scrolled .navbar-logo img {
  filter: brightness(0) saturate(100%);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}
.navbar-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-self: center;
}
.navbar-links a {
  color: #5d5d6c;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.navbar-links a:hover {
  color: #0d0d1a;
}
.navbar-links a.active {
  color: #0d0d1a;
  font-weight: 700;
}

/* Dropdowns */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover > a .chevron {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #eeeef0;
  border-radius: 12px;
  padding: 8px;
  padding-top: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
/* Invisible bridge between link and dropdown to prevent hover gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown > a {
  position: relative;
  z-index: 2;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #5d5d6c;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown-menu a:hover {
  background: rgba(189,219,32,0.1);
  color: #0d0d1a;
}

/* Mobile submenus */
.mobile-menu .mobile-submenu-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  color: #0d0d1a;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #eeeef0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.mobile-menu .mobile-submenu-title::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #91919f;
  border-bottom: 2px solid #91919f;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.mobile-menu .mobile-submenu-title.expanded::after {
  transform: rotate(-135deg);
}
.mobile-menu .mobile-sub {
  display: none;
  padding-left: 12px;
}
.mobile-menu .mobile-sub.expanded {
  display: block;
}
.mobile-menu .mobile-sub a {
  padding-left: 8px;
  font-size: 0.9rem;
}

.navbar-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar-cta > a:not(.btn-primary) {
  color: #5d5d6c;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}
.navbar-cta > a:not(.btn-primary):hover {
  color: #0d0d1a;
}
.navbar-cta > a:not(.btn-primary).active {
  color: #0d0d1a;
  font-weight: 700;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #32373c;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.3s ease;
}
/* White hamburger on transparent navbar (before scroll) */
.navbar.navbar-transparent .hamburger span {
  background: rgba(255,255,255,0.85);
}
.navbar.navbar-transparent.scrolled .hamburger span {
  background: #32373c;
}
/* When menu is open, force dark hamburger and white navbar bg */
.navbar.menu-active {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: rgba(0,0,0,0.06) !important;
}
.navbar.menu-active .hamburger span {
  background: #32373c !important;
}
.navbar.menu-active .navbar-logo img {
  filter: brightness(0) saturate(100%) !important;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 99;
  padding: 8px 24px 24px;
  flex-direction: column;
  overflow-y: auto;
  max-height: calc(100vh - 68px - 40px);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: #5d5d6c;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #eeeef0;
  transition: color 0.15s ease;
}
.mobile-menu a:hover { color: #0d0d1a; }

@media (max-width: 1023px) {
  .navbar-inner { grid-template-columns: 1fr auto auto auto; align-items: center; }
  .navbar-links { display: none; }
  .navbar-cta { display: none; }
  .navbar-inner > .lang-switch-mobile {
    display: inline-block !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.6;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #32373c;
    margin-right: 4px;
    transition: opacity 0.2s ease;
  }
  .navbar-inner > .lang-switch-mobile:hover { opacity: 1; }
  .navbar.navbar-transparent > .navbar-inner > .lang-switch-mobile { color: rgba(255,255,255,0.7); }
  .navbar.navbar-transparent.scrolled > .navbar-inner > .lang-switch-mobile,
  .navbar.menu-active > .navbar-inner > .lang-switch-mobile { color: #32373c; }
  .hamburger { display: flex; }
  .mobile-menu .lang-switch { display: none !important; }
}

/* === Buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #bddb20;
  color: #0d0d1a;
  font-weight: 600;
  font-size: 0.925rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: #a8c41c;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(189,219,32,0.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid #bddb20; outline-offset: 2px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #32373c;
  font-weight: 600;
  font-size: 0.925rem;
  border-radius: 8px;
  border: 1.5px solid #d9d9de;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease, background 0.2s ease;
}
.btn-secondary:hover {
  border-color: #bddb20;
  background: rgba(189,219,32,0.06);
  transform: translateY(-1px);
}
.btn-secondary:active { transform: translateY(0); }
.btn-secondary:focus-visible { outline: 2px solid #bddb20; outline-offset: 2px; }

.btn-secondary.dark {
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}
.btn-secondary.dark:hover {
  border-color: #bddb20;
  color: #ffffff;
  background: rgba(189,219,32,0.08);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 1rem;
}

/* === Sections === */
.section {
  padding: 96px 24px;
}
@media (min-width: 768px) {
  .section { padding: 120px 40px; }
}
.section-alt { background: #f7f7f8; }
.section-dark { background: #0d0d1a; color: #ffffff; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Accent Line === */
.accent-line {
  width: 48px;
  height: 4px;
  background: #bddb20;
  border-radius: 2px;
}

/* === Typography === */
.section-title {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #0d0d1a;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: #737384;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 640px;
}
.section-dark .section-title { color: #ffffff; }
.section-dark .section-subtitle { color: #A0A0B0; }

/* === Cards === */
.card {
  background: #ffffff;
  border: 1px solid #eeeef0;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.03);
}
.card-alt { background: #f7f7f8; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(189,219,32,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { stroke: #93ad18; }
.card-icon.lg { width: 56px; height: 56px; border-radius: 16px; }

/* === Stat Numbers === */
.stat-number {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #0d0d1a;
  line-height: 1;
}
.stat-accent { color: #bddb20; }
.stat-label {
  font-size: 0.9rem;
  color: #737384;
  margin-top: 8px;
}

/* === Checkmark List === */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #4c4c58;
}
.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #bddb20;
}

/* === Tags === */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f7f7f8;
  border: 1px solid #eeeef0;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #5d5d6c;
}

/* === Testimonial Card === */
.testimonial-card {
  background: #f7f7f8;
  border: 1px solid #eeeef0;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.testimonial-card blockquote,
.testimonial-card > p {
  flex: 1;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* === Trust logos === */
.trust-logo {
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.trust-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* === Page Header (for inner pages) === */
.page-header {
  background: linear-gradient(180deg, #f7f7f8 0%, #ffffff 100%);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(189,219,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .accent-line { margin-bottom: 20px; }
.page-header h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #0d0d1a;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-header p {
  color: #737384;
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 640px;
}

/* === Grid Helpers === */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Scroll Animations === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Footer === */
footer {
  background: #1a1a2e;
  color: #A0A0B0;
  padding: 80px 24px 40px;
}
footer .navbar-logo img,
footer img.footer-logo {
  filter: none;
}
footer a {
  color: #A0A0B0;
  text-decoration: none;
  transition: color 0.15s ease;
}
footer a:hover { color: #bddb20; }

/* === Hero (index only) === */
.hero-bg {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* === Forms === */
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #d9d9de;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #32373c;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input::placeholder { color: #b8b8c1; }
.form-input:focus {
  outline: none;
  border-color: #bddb20;
  box-shadow: 0 0 0 3px rgba(189,219,32,0.15);
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #4c4c58;
  margin-bottom: 6px;
}

/* === News Cards === */
.news-card {
  background: #ffffff;
  border: 1px solid #eeeef0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f7f7f8;
}
.news-card-body { padding: 24px; }
.news-date {
  font-size: 0.8rem;
  color: #91919f;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.news-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* === News Filter Buttons === */
.filter-btn {
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #5d5d6c;
  background: #f7f7f8;
  border: 1.5px solid #eeeef0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover {
  border-color: #bddb20;
  color: #32373c;
  background: rgba(189, 219, 32, 0.06);
}
.filter-btn.active {
  background: #bddb20;
  color: #0d0d1a;
  border-color: #bddb20;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(189, 219, 32, 0.3);
}

/* === Breadcrumb === */
.breadcrumb {
  font-size: 0.85rem;
  color: #91919f;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: #91919f;
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumb a:hover { color: #bddb20; }
.breadcrumb span { color: #32373c; font-weight: 500; }

/* === Timeline === */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #eeeef0;
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bddb20;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #eeeef0;
}
.timeline-year {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #bddb20;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

/* === Stars === */
.stars { display: flex; gap: 2px; }
.star { width: 18px; height: 18px; color: #bddb20; }

/* === Language Switcher === */
.lang-switch {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  opacity: 0.5;
  padding: 4px 10px !important;
  border-radius: 4px;
  margin-left: -14px;
  transition: opacity 0.2s ease, background 0.2s ease !important;
}
.lang-switch:hover {
  opacity: 1 !important;
  background: rgba(189,219,32,0.1);
}
/* Mobile menu lang switch */
.mobile-menu .lang-switch {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px !important;
  border: 1px solid #eeeef0;
  border-radius: 6px;
  font-size: 13px !important;
  text-align: center;
  width: auto;
}
