/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 2px;
  background: #fff;
}
.lang-switcher .lang-switch {
  background: transparent;
  border: none;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.lang-switcher .lang-switch:hover {
  color: #307FFF;
}
.lang-switcher .lang-switch.active {
  background: #307FFF;
  color: #fff;
}
.lang-switcher .lang-switch .flag {
  font-size: 14px;
}

/* Mobile language switcher */
.mobile-lang-switcher {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  margin-top: 20px;
}
.mobile-lang-switcher .lang-switch {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-radius: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mobile-lang-switcher .lang-switch.active {
  background: #307FFF;
  color: #fff;
  border-color: #307FFF;
}

/* Footer Logo — blue background variant, properly sized */
.footer4 .footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}
.footer4 .footer-logo img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Header Contact button — reduced 20% smaller than default theme-btn12 */
.header1-buttons .theme-btn12 {
  padding: 10px 13px;        /* was 12px 16px → ~20% smaller */
  font-size: 14px;           /* was 18px → ~20% smaller */
  line-height: 14px;
}
.header1-buttons .theme-btn12 span.text {
  transform: translateY(-6px);  /* was -8px */
}
.header1-buttons .theme-btn12 span.arrows {
  height: 26px;              /* was 32px → ~20% smaller */
  width: 26px;
  line-height: 26px;
  font-size: 14px;           /* was 17px */
  margin-left: 6px;
}
.header1-buttons .theme-btn12 .arrow2 {
  transform: translateY(-6px) rotate(-45deg) translateX(-42px);
}
.header1-buttons .theme-btn12 .arrow1 {
  transform: translateX(6px);
}
.header1-buttons .theme-btn12:hover .arrow2 {
  transform: translateY(-2px) rotate(-20deg) translateX(-6px);
}
.header1-buttons .theme-btn12:hover .arrow1 {
  transform: translateY(-5px) rotate(-45deg) translateX(36px);
}
