.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-7ca98cb */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

/* ===== متغیرهای رنگی سازمانی ===== */
:root {
  --paradox-primary: #00b4ff;
  --paradox-primary-light: #00d4ff;
  --paradox-primary-dark: #0088cc;
  --paradox-bg: #020a15;
  --paradox-bg-light: #051020;
  --paradox-text: #ffffff;
  --paradox-text-muted: #8899aa;
  --paradox-border: rgba(0, 180, 255, 0.15);
  --paradox-glow: rgba(0, 180, 255, 0.4);
  --header-height: 75px;
}

/* ===== هدر اصلی ===== */

.paradox-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 9999;
  background: rgba(2, 10, 21, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--paradox-border);
  transition: all 0.4s ease;
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.paradox-header.scrolled {
  background: rgba(2, 10, 21, 0.95);
  box-shadow: 0 5px 30px rgba(0, 180, 255, 0.1);
  border-bottom-color: rgba(0, 180, 255, 0.25);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: var(--header-height);
}

/* ===== لوگو ===== */
.header-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--paradox-text);
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 180, 255, 0.3);
  transition: all 0.3s ease;
}

.logo-link:hover .logo-text {
  text-shadow: 0 0 30px rgba(0, 180, 255, 0.6);
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--paradox-primary);
  letter-spacing: 5px;
  margin-top: 3px;
  font-weight: 600;
}

/* ===== منوی ناوبری ===== */
.header-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  color: var(--paradox-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--paradox-primary), var(--paradox-primary-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px var(--paradox-glow);
}

/* حالت Hover */
.nav-link:hover {
  color: var(--paradox-text);
  text-shadow: 0 0 15px rgba(0, 180, 255, 0.3);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* حالت Active */
.nav-link.active {
  color: var(--paradox-text);
  font-weight: 600;
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* حالت Focus برای دسترس‌پذیری */
.nav-link:focus {
  outline: none;
  color: var(--paradox-primary-light);
}

.nav-link:focus-visible {
  outline: 2px solid var(--paradox-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ===== دکمه همبرگری ===== */
.header-actions {
  flex-shrink: 0;
}

.hamburger-btn {
  background: transparent;
  border: 1px solid var(--paradox-border);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.hamburger-btn:hover {
  background: rgba(0, 180, 255, 0.1);
  border-color: var(--paradox-primary);
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.3);
}

.hamburger-btn:focus-visible {
  outline: 2px solid var(--paradox-primary);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paradox-text);
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* انیمیشن همبرگر به ضربدر */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger-btn.active {
  border-color: var(--paradox-primary);
  background: rgba(0, 180, 255, 0.15);
}

/* ===== منوی موبایل ===== */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  background: rgba(2, 10, 21, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--paradox-border);
  border-bottom: 1px solid var(--paradox-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  z-index: 9998;
}

.mobile-menu.active {
  max-height: 500px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
  gap: 5px;
}

.mobile-nav-link {
  color: var(--paradox-text-muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  border-right: 3px solid transparent;
}

.mobile-nav-link:hover {
  color: var(--paradox-text);
  background: rgba(0, 180, 255, 0.08);
  border-right-color: var(--paradox-primary);
  padding-right: 25px;
}

.mobile-nav-link.active {
  color: var(--paradox-primary-light);
  background: rgba(0, 180, 255, 0.1);
  border-right-color: var(--paradox-primary);
  font-weight: 700;
}

.mobile-nav-link:focus-visible {
  outline: 2px solid var(--paradox-primary);
  outline-offset: -2px;
}

/* ===== جلوگیری از اسکرول هنگام باز بودن منو ===== */
body.menu-open {
  overflow: hidden;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .header-nav {
    display: none;
  }
  
  .header-container {
    padding: 0 25px;
  }
  
  .logo-text {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 20px;
  }
  
  .logo-text {
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  .logo-sub {
    font-size: 8px;
    letter-spacing: 3px;
  }
  
  .mobile-nav {
    padding: 15px 20px;
  }
  
  .mobile-nav-link {
    font-size: 15px;
    padding: 12px 15px;
  }
}

/* ===== انیمیشن ورودی لینک‌های موبایل ===== */
.mobile-menu.active .mobile-nav-link {
  animation: slideIn 0.4s ease forwards;
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-nav-link:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== افکت Glow برای هدر در حالت اسکرول ===== */
.paradox-header.scrolled::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--paradox-primary) 50%, 
    transparent 100%);
  opacity: 0.5;
}/* End custom CSS */