/*--------------------------------------------------------------
  Smaraf — Fluidity & Smooth UX Enhancements
  Layered on top of cretech.css — do NOT edit cretech.css
--------------------------------------------------------------*/

/* ========================= 1. Smooth Scroll ========================= */
html {
  scroll-behavior: smooth;
}

/* Disable smooth scroll for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================= 2. Preloader & Page Reveal ========================= */
.preloader {
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-wrapper {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.page-wrapper--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= 3. Sticky Header ========================= */
.sticky-header--cloned {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}

.sticky-header--cloned.sticky-fixed {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* ========================= 4. Links & Buttons ========================= */
a {
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.thm-btn {
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.2s ease;
}

.thm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 92, 13, 0.3);
}

.thm-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(252, 92, 13, 0.2);
}

/* ========================= 5. Service Cards ========================= */
.service-card-two {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease;
}

.service-card-two:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-card-two__icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card-two:hover .service-card-two__icon i {
  transform: scale(1.15);
}

/* ----- 5b. Redesigned Service Cards ----- */
.service-card-two--redesign {
  background: transparent;
  border-radius: 16px;
  padding: 40px 28px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.service-card-two--redesign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--cretech-primary, #fc5c0d);
  border-radius: 0 0 4px 4px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-two--redesign:hover::before {
  width: 100%;
  background: var(--cretech-primary, #fc5c0d);
}

.service-card-two--redesign:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(252, 92, 13, 0.12);
  border-color: transparent;
}

.service-card-two--redesign .service-card-two__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff5ee 0%, #ffe8d6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: none;
  position: relative;
  transition: background 0.4s ease, transform 0.4s ease;
}

.service-card-two--redesign:hover .service-card-two__icon {
  background: linear-gradient(135deg, var(--cretech-primary, #fc5c0d) 0%, #ff8a3d 100%);
  transform: scale(1.08);
}

.service-card-two--redesign .service-card-two__icon i {
  font-size: 32px;
  color: var(--cretech-primary, #fc5c0d);
  transition: color 0.4s ease, transform 0.3s ease;
}

.service-card-two--redesign:hover .service-card-two__icon i {
  color: #fff;
  transform: scale(1);
}

.service-card-two--redesign .service-card-two__title {
  font-size: 20px;
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .service-card-two--redesign .service-card-two__title {
    font-size: 20px;
  }
}

.service-card-two--redesign .service-card-two__title a {
  color: var(--cretech-black, #12062c);
  background: none;
}

.service-card-two--redesign:hover .service-card-two__title a {
  color: var(--cretech-primary, #fc5c0d);
}

.service-card-two--redesign .service-card-two__text {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 20px;
  flex-grow: 1;
  transition: color 0.4s ease;
}

.service-card-two--redesign:hover .service-card-two__text {
  color: #6b7280;
}

.service-card-two__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cretech-primary, #fc5c0d);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-card-two__link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.service-card-two--redesign:hover .service-card-two__link {
  gap: 12px;
}

.service-card-two--redesign:hover .service-card-two__link i {
  transform: translateX(4px);
}

/* Service Card Three (used on service detail pages) */
.service-card-three {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease;
}

.service-card-three:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ========================= 6. Navigation ========================= */
.main-menu__list > li > a {
  position: relative;
  transition: color 0.25s ease;
}

.main-menu__list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--cretech-primary, #fc5c0d);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu__list > li > a:hover::after,
.main-menu__list > li.current > a::after {
  width: 100%;
  left: 0;
}

/* Dropdown menus */
.main-menu__list li ul {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(8px);
}

.main-menu__list li:hover > ul {
  transform: translateY(0);
}

/* Mobile nav */
.mobile-nav__wrapper {
  transition: visibility 0.35s ease;
}

.mobile-nav__overlay {
  transition: opacity 0.35s ease;
}

.mobile-nav__content {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================= 7. Scroll-to-Top ========================= */
.scroll-to-top {
  transition: background-color 0.3s ease,
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease,
              opacity 0.3s ease;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(252, 92, 13, 0.35);
}

/* ========================= 8. Footer ========================= */
.footer-widget__links a {
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-widget__links a:hover {
  padding-left: 4px;
}

.footer-widget__social a {
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.footer-widget__social a:hover {
  transform: translateY(-2px);
}

/* ========================= 9. Partner/Client Carousel ========================= */
.client-carousel__one__item img,
.brand-one__item img {
  transition: filter 0.35s ease, opacity 0.35s ease;
  filter: grayscale(100%);
  opacity: 0.6;
}

.client-carousel__one__item:hover img,
.brand-one__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========================= 10. Fun Facts Counter ========================= */
.funfact-one__item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.funfact-one__item:hover {
  transform: translateY(-4px);
}

/* ========================= 10b. Experience Badge Rearranged ========================= */
.about-five__images__caption {
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 180px;
  padding: 28px 24px 22px;
  border-radius: 16px;
  border-right: none;
  border-bottom: 4px solid var(--cretech-primary, #fc5c0d);
  bottom: -30px;
  left: auto;
  right: -30px;
}

@media (min-width: 992px) {
  .about-five__images__caption {
    bottom: -40px;
    right: -50px;
    left: auto;
    width: 200px;
    padding: 32px 28px 26px;
  }
}

.about-five__images__caption .count-text {
  font-size: 56px;
  margin-right: 0;
  margin-bottom: 4px;
  color: var(--cretech-primary, #fc5c0d);
}

@media (min-width: 992px) {
  .about-five__images__caption .count-text {
    font-size: 64px;
  }
}

.about-five__images__caption .caption-divider {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--cretech-primary, #fc5c0d);
  border-radius: 2px;
  margin: 8px auto;
}

.about-five__images__caption span:last-child {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cretech-black, #12062c);
  margin-right: 0;
  margin-top: 0;
}

/* ========================= 11. About Section ========================= */
.about-five__image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-five__image:hover img {
  transform: scale(1.03);
}

/* ========================= 12. Page Header (Breadcrumb) ========================= */
.page-header {
  overflow: hidden;
}

.page-header__bg {
  transition: transform 8s ease-out;
}

/* ========================= 13. Contact Form ========================= */
.contact-one input,
.contact-one textarea,
.contact-one select {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-one input:focus,
.contact-one textarea:focus,
.contact-one select:focus {
  border-color: var(--cretech-primary, #fc5c0d);
  box-shadow: 0 0 0 3px rgba(252, 92, 13, 0.1);
  outline: none;
}

/* ========================= 14. Images — Smooth Load ========================= */
img {
  transition: opacity 0.4s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
  opacity: 1;
}

/* ========================= 15. Owl Carousel Smoothness ========================= */
.owl-carousel .owl-stage {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.owl-carousel .owl-nav button {
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease !important;
}

.owl-carousel .owl-nav button:hover {
  transform: scale(1.1);
}

.owl-carousel .owl-dots .owl-dot span {
  transition: width 0.3s ease, background-color 0.3s ease !important;
}

/* ========================= 16. Section Reveal Helpers ========================= */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in-section:nth-child(2) { transition-delay: 0.1s; }
.fade-in-section:nth-child(3) { transition-delay: 0.2s; }
.fade-in-section:nth-child(4) { transition-delay: 0.3s; }

/* ========================= 17. GPU Acceleration Hints ========================= */
.slider-one__carousel,
.sticky-header--cloned,
.preloader,
.scroll-to-top,
.mobile-nav__content {
  will-change: transform;
}

/* ========================= 18. Topbar slide-up on scroll ========================= */
.topbar {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              max-height 0.4s ease;
  overflow: hidden;
}

.topbar--hidden {
  transform: translateY(-100%);
  opacity: 0;
  max-height: 0;
  pointer-events: none;
}

/* ========================= 19. Typography & Content Polish ========================= */
/* Better text rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Section titles — tighter spacing */
.section-title__text {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-title__title {
  line-height: 1.25;
}

/* ========================= 20. Service Page Content Improvements ========================= */
/* Service detail content — better readability */
.about-one .about-five__text,
.about-three .about-five__text,
.service-details__content p {
  line-height: 1.8;
  color: var(--cretech-text, #797582);
}

/* Service sidebar / related services list */
.service-sidebar__single__item a {
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.service-sidebar__single__item a:hover {
  color: var(--cretech-primary, #fc5c0d);
  padding-left: 6px;
}

/* ========================= 21. Page Header / Breadcrumb ========================= */
.page-header__title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ========================= 22. Professional Card & Box Shadows ========================= */
/* Consistent shadow system */
.about-five__box__item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.about-five__box__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Contact info cards */
.contact-one__info__item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-one__info__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ========================= 23. Improved Form Styling ========================= */
/* All form inputs site-wide */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  border-color: var(--cretech-primary, #fc5c0d);
  box-shadow: 0 0 0 3px rgba(252, 92, 13, 0.1);
  outline: none;
}

/* Newsletter input in footer */
.footer-widget__newsletter input[type="email"] {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-widget__newsletter input[type="email"]:focus {
  border-color: var(--cretech-primary, #fc5c0d);
  box-shadow: 0 0 0 3px rgba(252, 92, 13, 0.15);
  outline: none;
}

/* ========================= 24. Selection Color ========================= */
::selection {
  background-color: var(--cretech-primary, #fc5c0d);
  color: #fff;
}

::-moz-selection {
  background-color: var(--cretech-primary, #fc5c0d);
  color: #fff;
}

/* ========================= 25. Improved Image Presentation ========================= */

/* Partner carousel — add opacity transition */
.client-carousel .owl-item img {
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  max-height: 50px;
  object-fit: contain;
}

.client-carousel .owl-item:hover img {
  transform: scale(1.05);
}

/* ========================= 26. CTA Section Polish ========================= */
.cta-one__inner {
  border-radius: 16px;
}

/* ========================= 27. Accessible Focus Styles ========================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--cretech-primary, #fc5c0d);
  outline-offset: 2px;
}

/* ========================= 28. Print Styles ========================= */
@media print {
  .preloader,
  .custom-cursor__cursor,
  .custom-cursor__cursor-two,
  .scroll-to-top,
  .mobile-nav__wrapper,
  .search-popup,
  .topbar {
    display: none !important;
  }

  .page-wrapper {
    opacity: 1 !important;
    transform: none !important;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #666;
  }
}

/* ========================= 29. Professional Header Redesign ========================= */

/* --- Topbar: Dark, corporate look --- */
.topbar {
  background-color: #1a1a2e !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar .container-fluid {
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar__text {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
}

.topbar__info li {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.topbar__info li i {
  color: var(--cretech-primary, #fc5c0d);
  font-size: 12px;
}

.topbar__info li a:hover {
  color: var(--cretech-primary, #fc5c0d);
}

.topbar__social li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.topbar__social li a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.topbar__social li a {
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Thin separator between social icons */
.topbar__social li + li {
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* --- Main Navigation: Clean, refined --- */
.main-menu {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.main-menu .container-fluid {
  padding-top: 0;
  padding-bottom: 0;
}

.main-menu__logo a {
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.main-menu__logo img {
  transition: opacity 0.3s ease;
}

.main-menu__logo a:hover img {
  opacity: 0.85;
}

/* Nav links refinement */
.main-menu__list > li > a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2d2d3a;
  padding: 26px 0;
}

.main-menu__list > li > a:hover,
.main-menu__list > li.current > a {
  color: var(--cretech-primary, #fc5c0d);
}

/* Animated underline — thicker, offset from bottom */
.main-menu__list > li > a::after {
  bottom: -1px;
  height: 3px;
  background-color: var(--cretech-primary, #fc5c0d);
  border-radius: 2px 2px 0 0;
}

/* Dropdown menu — refined with accent border */
.main-menu__list > li > ul {
  border-radius: 0 0 8px 8px;
  border-top: 3px solid var(--cretech-primary, #fc5c0d);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 240px;
}

.main-menu__list > li > ul > li > a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 24px;
  color: #4a4a5a;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.main-menu__list > li > ul > li > a:hover {
  background-color: rgba(252, 92, 13, 0.06);
  color: var(--cretech-primary, #fc5c0d);
  border-left-color: var(--cretech-primary, #fc5c0d);
  padding-left: 28px;
}

/* Sub-dropdown — same style */
.main-menu__list > li > ul > li > ul {
  border-radius: 0 8px 8px 0;
  border-top: 3px solid var(--cretech-primary, #fc5c0d);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
}

/* --- CTA Button in Nav --- */
.main-menu__cta-btn {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
  margin-right: 20px;
  padding: 10px 24px;
  background-color: var(--cretech-primary, #fc5c0d);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .main-menu__cta-btn {
    display: inline-flex;
  }
}

.main-menu__cta-btn:hover {
  background-color: #e04e00;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(252, 92, 13, 0.35);
  color: #fff;
}

.main-menu__cta-btn:active {
  transform: translateY(0);
}

.main-menu__cta-btn i {
  font-size: 14px;
}

/* --- Sticky Header: Glassmorphism effect --- */
.sticky-header--cloned {
  background-color: rgba(255, 255, 255, 0.95) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.sticky-header--cloned.sticky-fixed {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* Slightly smaller nav in sticky mode */
.sticky-header--cloned .main-menu__list > li > a {
  padding-top: 20px;
  padding-bottom: 20px;
}

.sticky-header--cloned .main-menu__logo img {
  transform: scale(0.9);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

/* --- Mobile hamburger — animated --- */
.main-menu__right .mobile-nav__toggler {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.25s ease;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .main-menu__right .mobile-nav__toggler {
    display: none;
  }
}

.main-menu__right .mobile-nav__toggler:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.main-menu__right .mobile-nav__toggler span {
  width: 20px;
  height: 2px;
  background-color: #2d2d3a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Mobile nav enhancements --- */
.mobile-nav__content {
  max-width: 320px;
  background-color: #1a1a2e;
  padding: 30px 20px;
}

.mobile-nav__close {
  transition: transform 0.3s ease;
}

.mobile-nav__close:hover {
  transform: rotate(90deg);
}

/* Mobile nav links refinement */
.mobile-menu__list li a {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.mobile-nav__social a {
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.mobile-nav__social a:hover {
  transform: translateY(-2px);
}

/* ========================= 30. Language Switcher ========================= */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  line-height: 1;
  text-decoration: none;
}

.lang-switcher__btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.lang-switcher__btn.active {
  color: #fff;
  background: var(--cretech-primary, #fc5c0d);
  border-color: var(--cretech-primary, #fc5c0d);
}

/* Mobile language switcher */
.lang-switcher--mobile {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}

.lang-switcher--mobile .lang-switcher__btn {
  width: 40px;
  height: 30px;
  font-size: 13px;
  border-color: rgba(255, 255, 255, 0.25);
}
