* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Vazirmatn", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--background);
  line-height: 1.6;
  color: var(--text);
}

/* لودر بهبود یافته با تم اصلی */

.neo-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
  color: var(--text);
}

.loader-logo {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text);
}

.neo-progress::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
  animation: progress 2.5s ease-in-out;
}

/* نوتیفیکیشن */
.notification {
  position: fixed;
  top: 100px;
  left: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  animation: slideInLeft 0.3s ease-out;
  max-width: 300px;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification.success {
  background: var(--success);
}

.notification.error {
  background: var(--danger);
}

.notification.info {
  background: var(--primary);
}

/* بقیه استایل‌ها بدون تغییر باقی می‌مانند */
.neo-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.neo-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  font-size: 2.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.btn-neo {
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 2px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary);
}

/* پروفایل کاربری */
.user-profile-wrapper {
  position: relative;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  cursor: pointer;
}

.user-profile:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  overflow: hidden;
  border: 2px solid var(--primary-light);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-fallback {
  background: var(--gradient);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.user-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.user-role {
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--primary-light);
  color: white;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  margin-top: 0.2rem;
}

.user-role.admin {
  background: var(--accent);
}

.user-role.user {
  background: var(--primary);
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.user-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  min-width: 200px;
}

.user-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-item:hover {
  background: var(--secondary);
  color: var(--primary);
}

.dropdown-item.logout {
  color: #e74c3c;
}

.dropdown-item.logout:hover {
  background: #e74c3c;
  color: white;
}

.dropdown-divider {
  height: 1px;
  background: var(--secondary);
  margin: 0.5rem 0;
}

/* منوی همبرگری */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  background: rgba(139, 92, 246, 0.2);
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* منوی موبایل */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(5px);
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--secondary);
  background: var(--gradient);
  color: white;
}

.mobile-nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-items {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  flex: 1;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}

.mobile-nav a i {
  width: 20px;
  text-align: center;
}

.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--secondary);
}

/* هیرو سکشن خفن */
.neo-hero {
  min-height: 100vh;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.8rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: slideUp 1s ease-out 0.2s both;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  animation: slideUp 1s ease-out 0.4s both;
}

.btn-hero {
  padding: 1.2rem 2.8rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--gradient);
}

.btn-hero-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--gradient);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 2px solid rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* بخش آمار */
.stats-section {
  background: var(--white);
  padding: 6rem 2rem;
  position: relative;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--secondary), var(--white));
  border-radius: 24px;
  transition: all 0.4s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2.2rem;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ویژگی‌ها */
.features-section {
  padding: 8rem 2rem;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--background) 100%
  );
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 80px;
  height: 5px;
  background: var(--gradient);
  border-radius: 3px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.features-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white);
  font-size: 2.8rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.feature-desc {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* بخش نظرات کاملاً جدید */
.testimonials-section {
  padding: 8rem 2rem;
  background: var(--light-cream);
  position: relative;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.comments-header {
  text-align: center;
  margin-bottom: 4rem;
}

.comments-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.comments-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 80px;
  height: 5px;
  background: var(--gradient);
  border-radius: 3px;
}

.comments-subtitle {
  color: var(--text-light);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
}

/* سیستم نظرات مدرن */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.comment-user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.comment-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-user-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.comment-user-name {
  font-weight: 800;
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.comment-user-role {
  font-size: 0.9rem;
  color: var(--text-light);
  background: var(--secondary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.testimonial-date {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
}

.testimonial-rating {
  display: flex;
  gap: 0.2rem;
}

.testimonial-rating i {
  font-size: 1rem;
  color: #ffc107;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text);
  font-size: 1.05rem;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: -1.5rem;
  right: -0.5rem;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-actions {
  display: flex;
  gap: 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
  margin-top: auto;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}

.action-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.action-btn.liked {
  color: var(--danger);
  background: rgba(239, 68, 68, 0.1);
}

.action-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.action-btn:disabled:hover {
  background: none;
  color: var(--text-light);
}

/* تعداد نظرات */
.comments-count {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139, 92, 246, 0.1);
  margin-top: 2rem;
}

.count-text {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

.count-number {
  color: var(--primary);
  font-weight: 800;
}

/* CTA سکشن */
.cta-section {
  padding: 8rem 2rem;
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.btn-cta {
  background: var(--white);
  color: var(--primary);
  padding: 1.3rem 3rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

/* فوتر */
.neo-footer {
  background: #0f172a;
  color: var(--white);
  padding: 5rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  margin-bottom: 1.8rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.footer-contact {
  list-style: none;
  margin-bottom: 2rem;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.footer-contact i {
  width: 24px;
  color: var(--primary-light);
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(8px);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

/* انیمیشن‌های جدید */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ریسپانسیو بهبود یافته */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .section-title,
  .comments-title,
  .cta-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title,
  .comments-title,
  .cta-title {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-card {
    padding: 2.5rem 2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title,
  .comments-title,
  .cta-title {
    font-size: 1.8rem;
  }

  .section-subtitle,
  .comments-subtitle,
  .cta-subtitle {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .testimonial-meta {
    align-items: flex-start;
    flex-direction: row;
    gap: 1rem;
  }

  .comment-user-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .comment-user-name {
    font-size: 1.1rem;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.6rem;
  }

  .btn-neo {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .mobile-nav {
    width: 280px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 8rem 1rem 4rem;
  }

  .features-section,
  .testimonials-section,
  .stats-section,
  .cta-section {
    padding: 4rem 1rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .btn-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}
