/* Extracted Header Styles from index.html */

/* Reset inherited styles for nav-menu - but keep pseudo-elements working */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Colony", sans-serif !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* Logo ve Nav Filter Koruması */
.nav-menu,
.nav-menu *,
.nav-logo,
.nav-logo img,
.nav-container {
  filter: none !important;
  -webkit-filter: none !important;
}

/* Preserve Font Awesome icons */
.nav-menu i.fas,
.nav-menu i.fab,
.nav-menu i.far,
.nav-menu i.fa {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
  font-style: normal !important;
  font-weight: 900;
}

.nav-menu i.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400;
}

.nav-menu a {
  text-decoration: none !important;
}

.nav-menu ul,
.nav-menu li {
  list-style: none !important;
}

/* Navigation Menu Styles */
.nav-menu {
  display: block;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 15px;
  font-family: "Space Colony", sans-serif;
}

/* Zoom-friendly: Scale down menu for smaller effective viewports */
@media (max-width: 1400px) {
  .nav-menu {
    transform: scale(0.85);
    transform-origin: top center;
    padding-top: 5px;
  }
  .nav-logo {
    left: -60px !important;
  }
  .language-selector-modern {
    right: -60px !important;
  }
}

@media (max-width: 1100px) {
  .nav-menu {
    transform: scale(0.75);
    transform-origin: top center;
    padding-top: 3px;
  }
  .nav-logo {
    left: -120px !important;
  }
  .language-selector-modern {
    right: -120px !important;
  }
}

@media (max-width: 950px) {
  .nav-menu {
    transform: scale(0.65);
    transform-origin: top center;
    padding-top: 2px;
  }
  .nav-logo {
    left: -180px !important;
  }
  .language-selector-modern {
    right: -180px !important;
  }
}

.nav-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 70px;
}

.nav-logo {
  display: block;
  position: absolute;
  left: 40px;
  cursor: pointer;
}

.nav-logo img {
  display: block;
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  background: #2d3237;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0;
}

.nav-links > li {
  display: block;
  position: relative;
  list-style: none;
}

.nav-links > li > a {
  display: block;
  padding: 8px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.nav-links > li > a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ff8c5a);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links > li > a:hover {
  color: #ff6b35;
  background: transparent;
}

.nav-links > li > a:hover::before {
  width: 90%;
}

.nav-links > li > a.active {
  color: #ff6b35;
}

.nav-links > li > a.active::before {
  width: 90%;
}

/* Dropdown Arrow for main items */
.nav-links > .has-dropdown > a::after {
  content: "" !important;
  display: inline-block !important;
  width: 5px !important;
  height: 5px !important;
  border-right: 1.5px solid currentColor !important;
  border-bottom: 1.5px solid currentColor !important;
  border-top: none !important;
  border-left: none !important;
  transform: rotate(45deg) !important;
  margin-left: 6px !important;
  margin-bottom: 2px !important;
  transition: transform 0.3s ease !important;
  background: transparent !important;
  vertical-align: middle !important;
}

.nav-links > .has-dropdown:hover > a::after {
  transform: rotate(-135deg) !important;
}

/* Level 1 Dropdown Menu */
.dropdown {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(0);
  background: #2d3237;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 220px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 12px;
  margin-top: 20px;
  list-style: none;
}

/* Invisible bridge to prevent dropdown closing */
.dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 8px;
}

.dropdown li {
  display: block;
  position: relative;
  list-style: none;
}

.dropdown > li > a {
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.dropdown > li > a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ff8c5a);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.dropdown > li > a:hover {
  background: transparent;
  color: #ff6b35;
}

.dropdown > li > a:hover::before {
  width: 95%;
}

/* Submenu parent arrow */
.dropdown > .has-submenu > a::after {
  content: "" !important;
  display: inline-block !important;
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  width: 5px !important;
  height: 5px !important;
  border-right: 1.5px solid currentColor !important;
  border-bottom: 1.5px solid currentColor !important;
  border-top: none !important;
  border-left: none !important;
  transform: translateY(-50%) rotate(-45deg) !important;
  background: transparent !important;
}

/* Level 2 Submenu */
.submenu {
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  background: #2d3237;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 240px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 12px;
  margin-left: 12px;
  list-style: none;
}

/* Invisible bridge for submenu */
.submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: 15px;
  height: 100%;
  background: transparent;
}

.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  margin-left: 5px;
}

.submenu li {
  display: block;
  list-style: none;
}

.submenu li a {
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.submenu li a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ff8c5a);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.submenu li a:hover {
  background: transparent;
  color: #ff6b35;
}

.submenu li a:hover::before {
  width: 95%;
}

/* Level 3 Deep Submenu */
.submenu .has-submenu > a::after {
  content: "" !important;
  display: inline-block !important;
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  width: 5px !important;
  height: 5px !important;
  border-right: 1.5px solid currentColor !important;
  border-bottom: 1.5px solid currentColor !important;
  border-top: none !important;
  border-left: none !important;
  transform: translateY(-50%) rotate(-45deg) !important;
  background: transparent !important;
}

.submenu .submenu {
  left: 100%;
  top: 0;
}

/* Language Selector */
.language-selector-modern {
  display: block;
  position: absolute;
  right: 40px;
}

.language-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(50, 50, 50, 0.9);
  border: 1px solid rgba(255, 152, 0, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
}

.language-toggle-btn:hover {
  background: rgba(40, 40, 40, 0.95);
  border-color: rgba(255, 152, 0, 0.6);
}

.language-toggle-btn .language-text {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.language-toggle-btn .flag-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-toggle-btn .flag-circle img {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

/* Language Modal */
.language-modal {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: #2d3237;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  min-width: 160px;
  z-index: 1002;
}

.language-modal.active {
  display: block;
}

.language-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-option:hover {
  background: rgba(255, 107, 53, 0.1);
}

.language-option .flag-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-option .flag-circle img {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.language-option .language-name {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

/* Modern Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  width: 28px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 25px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ff6b35;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.menu-toggle span:nth-child(1) {
  width: 100%;
}

.menu-toggle span:nth-child(2) {
  width: 70%;
  margin-left: auto;
}

.menu-toggle span:nth-child(3) {
  width: 85%;
  margin-left: auto;
}

.menu-toggle:hover span {
  width: 100%;
  background: #ff8c5a;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  width: 100%;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  width: 100%;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-header,
.mobile-menu-footer {
  display: none !important;
}

/* Medium Desktop (1100px - 1400px) */
@media (max-width: 1400px) {
  .nav-container {
    padding: 0 15px;
  }

  .nav-logo {
    left: 20px;
  }

  .nav-logo img {
    height: 50px;
  }

  .nav-links {
    padding: 4px 12px;
    gap: 2px;
  }

  .nav-links > li > a {
    padding: 7px 12px;
    font-size: 13px;
  }

  .language-selector-modern {
    right: 20px;
  }

  .language-toggle-btn {
    padding: 6px 12px;
  }

  .language-toggle-btn .language-text {
    font-size: 12px;
  }

  .language-toggle-btn .flag-circle img {
    width: 20px;
    height: 20px;
  }
}

/* Small Desktop / Large Tablet (900px - 1100px) */
@media (max-width: 1100px) {
  .nav-container {
    padding: 0 10px;
  }

  .nav-logo {
    left: 15px;
  }

  .nav-logo img {
    height: 45px;
  }

  .nav-links {
    padding: 3px 8px;
    gap: 0px;
  }

  .nav-links > li > a {
    padding: 6px 10px;
    font-size: 12px;
  }

  .language-selector-modern {
    right: 15px;
  }

  .language-toggle-btn {
    padding: 5px 8px;
  }

  .language-toggle-btn .language-text {
    font-size: 11px;
  }

  .language-toggle-btn .flag-circle img {
    width: 18px;
    height: 18px;
  }
}

/* Tablet - Switch to hamburger menu (max-width: 900px) */
@media (max-width: 900px) {
  /* Disable zoom/scale hacks on mobile so right-aligned controls stay at the far right */
  .nav-menu {
    transform: none !important;
    padding-top: 10px !important;
  }

  .nav-logo {
    display: block !important;
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1001 !important;
  }

  .nav-logo img {
    height: 40px !important;
    width: auto !important;
  }

  .mobile-menu-header {
    display: flex !important;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: linear-gradient(
      165deg,
      #0f1114 0%,
      #1a1d22 40%,
      #22262c 100%
    ) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 100px 20px 40px !important;
    gap: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    clip-path: circle(0% at calc(100% - 45px) 45px);
    visibility: visible !important;
    transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 998 !important;
  }

  .nav-links.active {
    clip-path: circle(150% at calc(100% - 45px) 45px);
  }

  .nav-links > li {
    width: 100%;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav-links.active > li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active > li:nth-child(1) {
    transition-delay: 0.08s;
  }
  .nav-links.active > li:nth-child(2) {
    transition-delay: 0.12s;
  }
  .nav-links.active > li:nth-child(3) {
    transition-delay: 0.16s;
  }
  .nav-links.active > li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .nav-links.active > li:nth-child(5) {
    transition-delay: 0.24s;
  }
  .nav-links.active > li:nth-child(6) {
    transition-delay: 0.28s;
  }

  .nav-links > li > a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    letter-spacing: 0.2px !important;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.25s ease !important;
  }

  .nav-links > li > a::before {
    display: none !important;
  }

  .nav-links > li > a:hover,
  .nav-links > li.open > a {
    color: #ff6b35 !important;
    background: linear-gradient(
      135deg,
      rgba(255, 107, 53, 0.12) 0%,
      rgba(255, 107, 53, 0.05) 100%
    ) !important;
    border-color: rgba(255, 107, 53, 0.25) !important;
    transform: scale(1.01);
  }

  .nav-links > .has-dropdown > a::after {
    content: "" !important;
    position: relative !important;
    width: 7px !important;
    height: 7px !important;
    border-right: 2px solid rgba(255, 255, 255, 0.35) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.35) !important;
    transform: rotate(45deg) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      border-color 0.25s ease !important;
    margin-left: auto;
  }

  .nav-links > .has-dropdown.open > a::after {
    transform: rotate(-135deg) translateY(2px) !important;
    border-color: #ff6b35 !important;
  }

  .menu-toggle {
    display: flex !important;
    z-index: 1001 !important;
  }

  .menu-toggle span {
    background: #ff6b35 !important;
  }

  .menu-toggle.active span {
    background: #ffffff !important;
  }

  .language-selector-modern {
    display: block !important;
    right: 75px !important;
    z-index: 1001 !important;
  }

  .dropdown {
    position: static !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .submenu {
    position: static !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown::before,
  .submenu::before {
    display: none !important;
  }

  .has-dropdown.open > .dropdown {
    display: block !important;
    padding: 10px 0 6px 12px !important;
    animation: accordionOpen 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .has-submenu.open > .submenu {
    display: block !important;
    padding: 8px 0 4px 12px !important;
    animation: accordionOpen 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes accordionOpen {
    from {
      opacity: 0;
      transform: translateY(-10px) scaleY(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scaleY(1);
    }
  }

  .dropdown > li {
    border: none !important;
    margin-bottom: 3px;
  }

  .has-dropdown.open > .dropdown > li,
  .has-submenu.open > .submenu > li {
    animation: fadeSlideIn 0.25s ease-out forwards;
  }

  .has-dropdown.open > .dropdown > li:nth-child(1) {
    animation-delay: 0.02s;
  }
  .has-dropdown.open > .dropdown > li:nth-child(2) {
    animation-delay: 0.04s;
  }
  .has-dropdown.open > .dropdown > li:nth-child(3) {
    animation-delay: 0.06s;
  }
  .has-dropdown.open > .dropdown > li:nth-child(4) {
    animation-delay: 0.08s;
  }
  .has-dropdown.open > .dropdown > li:nth-child(5) {
    animation-delay: 0.1s;
  }
  .has-dropdown.open > .dropdown > li:nth-child(6) {
    animation-delay: 0.12s;
  }
  .has-dropdown.open > .dropdown > li:nth-child(7) {
    animation-delay: 0.14s;
  }
  .has-dropdown.open > .dropdown > li:nth-child(8) {
    animation-delay: 0.16s;
  }
  .has-dropdown.open > .dropdown > li:nth-child(9) {
    animation-delay: 0.18s;
  }
  .has-dropdown.open > .dropdown > li:nth-child(10) {
    animation-delay: 0.2s;
  }

  .has-submenu.open > .submenu > li:nth-child(1) {
    animation-delay: 0.02s;
  }
  .has-submenu.open > .submenu > li:nth-child(2) {
    animation-delay: 0.04s;
  }
  .has-submenu.open > .submenu > li:nth-child(3) {
    animation-delay: 0.06s;
  }
  .has-submenu.open > .submenu > li:nth-child(4) {
    animation-delay: 0.08s;
  }
  .has-submenu.open > .submenu > li:nth-child(5) {
    animation-delay: 0.1s;
  }
  .has-submenu.open > .submenu > li:nth-child(6) {
    animation-delay: 0.12s;
  }
  .has-submenu.open > .submenu > li:nth-child(7) {
    animation-delay: 0.14s;
  }
  .has-submenu.open > .submenu > li:nth-child(8) {
    animation-delay: 0.16s;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateX(-8px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .dropdown > li > a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    transition: all 0.2s ease !important;
    border-radius: 10px !important;
    margin: 0 !important;
    position: relative;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.01) 100%
    ) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
  }

  .dropdown > li > a:hover,
  .dropdown > li.open > a {
    color: #ff6b35 !important;
    background: linear-gradient(
      135deg,
      rgba(255, 107, 53, 0.1) 0%,
      rgba(255, 107, 53, 0.04) 100%
    ) !important;
    border-color: rgba(255, 107, 53, 0.2) !important;
  }

  .dropdown > li > a::before {
    display: none !important;
  }

  .dropdown > .has-submenu > a::after {
    content: "" !important;
    position: relative !important;
    width: 5px !important;
    height: 5px !important;
    border-right: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    transform: rotate(45deg) !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      border-color 0.25s ease !important;
  }

  .dropdown > .has-submenu.open > a::after {
    transform: rotate(-135deg) translateY(1px) !important;
    border-color: #ff6b35 !important;
  }

  .submenu li {
    margin-bottom: 2px;
  }

  .submenu li a {
    display: block !important;
    padding: 11px 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    transition: all 0.2s ease !important;
    border-radius: 8px !important;
    position: relative;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
  }

  .submenu li a:hover {
    color: #ff6b35 !important;
    background: rgba(255, 107, 53, 0.08) !important;
    border-color: rgba(255, 107, 53, 0.15) !important;
  }

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

  .nav-menu {
    z-index: 1000;
  }

  .mobile-menu-header {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    z-index: 999;
    background: linear-gradient(
      180deg,
      rgba(15, 17, 20, 0.98) 0%,
      rgba(15, 17, 20, 0.85) 70%,
      transparent 100%
    );
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  }

  .mobile-menu-header.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu-header .mobile-logo {
    display: block;
    height: 42px;
    width: auto;
  }

  .mobile-menu-footer {
    display: none;
  }

  .nav-links.active .mobile-menu-footer {
    display: block !important;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    animation: fadeSlideIn 0.4s ease-out 0.35s forwards;
    opacity: 0;
  }

  .mobile-contact-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .mobile-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100px;
    cursor: pointer;
  }

  .mobile-contact-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.15);
  }

  .mobile-contact-item i {
    font-size: 18px;
    color: #ff6b35;
  }

  .mobile-contact-item span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mobile-contact-item:hover span {
    color: #ffffff;
  }

  .mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
  }

  .mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-social-link:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.25);
    color: #ff6b35;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .nav-container {
    height: 60px;
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-links {
    padding: 70px 20px 20px !important;
  }

  .nav-links > li > a {
    font-size: 16px !important;
    padding: 15px 8px !important;
  }

  .language-selector-modern {
    right: 65px !important;
  }

  .language-toggle-btn {
    padding: 4px 10px !important;
  }

  .language-toggle-btn .language-text {
    font-size: 11px !important;
  }

  .language-toggle-btn .flag-circle img {
    width: 18px !important;
    height: 18px !important;
  }
}
