/* ==========================================================================
   دیجیتال آرا - استایل اصلی
   ========================================================================== */

/* متغیرهای رنگ و تنظیمات */
:root {
  /* 🎨 رنگ‌های اصلی */
  --primary-color: #3b82f6; /* Vibrant blue */
  --primary-dark: #1e40af; /* Deep navy blue */
  --primary-light: #93c5fd; /* Soft light blue */
  --secondary-color: #06b6d4; /* Cyan accent */
  --accent-color: #f59e0b; /* Golden highlight for CTAs */
  --success-color: #22c55e; /* Green */
  --warning-color: #fbbf24; /* Yellow */
  --error-color: #ef4444; /* Red */

  /* 📝 رنگ‌های متن */
  --text-primary: #1e293b; /* Deep slate gray for readability */
  --text-secondary: #475569; /* Muted text */
  --text-light: #94a3b8; /* Subtle text */
  --text-white: #ffffff; /* For dark backgrounds */

  /* 🧱 رنگ‌های پس‌زمینه */
  --bg-primary: #f8fafc; /* Very light gray/white background */
  --bg-secondary: #f1f5f9; /* Slightly darker for sections */
  --bg-dark: #0f172a; /* Deep blue-black for dark mode */
  --bg-card: #ffffff; /* Card surfaces */
  --bg-overlay: rgba(0, 0, 0, 0.6);

  /* 🌈 گرادیان‌ها */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
  --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --gradient-card: linear-gradient(145deg, #f9fafb 0%, #e2e8f0 100%);

  /* ☁️ سایه‌ها */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.3);

  /* ⚙️ انیمیشن‌ها */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* 📏 اندازه‌ها */
  --header-height: 70px;
  --container-max-width: 1200px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* ریست و تنظیمات کلی */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Vazirmatn", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  direction: rtl;
}

/* تایپوگرافی */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
}

/* کانتینر */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* لودر */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.5s ease;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: white;
}

.logo-loader {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  animation: logoFloat 2s ease-in-out infinite;
}

.logo-loader .digital {
  color: #ffffff;
}

.logo-loader .ara {
  color: #fbbf24;
}

.loader-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, #ffffff);
  border-radius: 2px;
  animation: progressLoad 2s ease-in-out;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes progressLoad {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.nav-logoImg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoImg {
  height: 60px;
}

/* کرسر سفارشی */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s ease;
}

.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transition: all 0.3s ease;
  opacity: 0.5;
}

/* ناوبری */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.nav-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-logo .digital {
  color: var(--primary-color);
}

.nav-logo .ara {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  position: relative;
  transition: var(--transition-normal);
  color: var(--primary-color);
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

.nav-link.active {
  color: var(--primary-color);
  background: rgba(99, 102, 241, 0.15);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: var(--transition-normal);
}

/* هیرو سکشن */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatShape 20s linear infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary-color);
  bottom: 20%;
  left: 15%;
  animation-delay: -5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-color);
  top: 60%;
  right: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  background: var(--success-color);
  top: 30%;
  left: 10%;
  animation-delay: -15s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
  }
}

.hero-content {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  color: white;
  margin-bottom: 2rem;
  animation: slideUp 1s ease var(--bounce) 0.5s forwards;
  z-index: 100;
}

.title-line {
  display: block;
  line-height: 1.1;
}

.highlight {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin-bottom: 3rem;
  animation: slideUp 1s ease var(--bounce) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: slideUp 1s ease var(--bounce) 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  height: 500px;
  /* animation: slideUp 1s ease var(--bounce) 1.1s forwards; */
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  color: white;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: cardFloat 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.card-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 20%;
  left: 20%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 30%;
  right: 20%;
  animation-delay: 3s;
}

.card-4 {
  bottom: 10%;
  left: 10%;
  animation-delay: 4.5s;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 50%;
  transform: translateX(50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }
  50% {
    transform: translateX(50%) translateY(-10px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* هدر بخش‌ها */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
}

/* بخش درباره ما */
.about {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  display: grid;
  gap: 2rem;
}

.about-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.about-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about-stats {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* بخش خدمات */
.services {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* Featured service card positioning */
.service-card.featured {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.02);
  order: -1; /* Move featured card to start */
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.service-card.featured h3,
.service-card.featured p {
  color: white;
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-features i {
  color: var(--accent-color);
}

.service-card.featured .service-btn {
  background: white;
  color: var(--primary-color);
}

/* Better responsive behavior */
@media (min-width: 768px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-column: span 2;
    max-width: 500px;
    justify-self: center;
  }
}

@media (min-width: 1025px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card.featured {
    grid-column: span 2;
    align-self: center;
  }
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card.featured {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
  transition: all var(--transition-normal);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-card.featured h3 {
  color: white;
}

.service-card p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: right;
}

.service-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-features i {
  color: var(--success-color);
  font-size: 0.8rem;
}

.service-card.featured .service-features i {
  color: var(--accent-color);
}

.service-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all var(--transition-normal);
  display: inline-block;
}

.service-card.featured .service-btn {
  background: white;
  color: var(--primary-color);
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* بخش پروژه‌ها */
.projects {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  background: white;
  border: 2px solid #6366f1;
  color: #6366f1;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: "Vazirmatn";
}

.filter-btn:hover,
.filter-btn.active {
  background: #6366f1;
  color: white;
  transform: translateY(-2px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.project-card.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-normal);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-actions {
  display: flex;
  gap: 1rem;
}

.project-link,
.project-zoom {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-normal);
  transform: translateY(20px);
}

.project-card:hover .project-link,
.project-card:hover .project-zoom {
  transform: translateY(0);
}

.project-link:hover,
.project-zoom:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.project-info {
  padding: 1rem;
}

.project-info h3 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.project-info-title {
  color: #ffffff !important;
  margin-bottom: 1rem !important;
  font-size: 1.3rem !important;
}

.project-info p {
  color: #7a8293;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--gradient-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.projects-cta {
  text-align: center;
}

/* بخش تماس */
.contact {
  padding: 6rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-text h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-text p {
  color: var(--text-secondary);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all var(--transition-normal);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-normal);
  background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* فوتر */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo .logo-text {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo .digital {
  color: var(--primary-light);
}

.footer-logo .ara {
  color: var(--accent-color);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
}

.footer-column a:hover {
  color: var(--primary-light);
  transform: translateX(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-normal);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* دکمه برگشت به بالا */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* انیمیشن‌های اسکرول */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: right var(--transition-normal);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-visual {
    height: 300px;
  }

  .floating-card {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card.featured {
    order: 0;
    transform: scale(1);
    grid-column: 1;
    max-width: none;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .projects-filter {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .container {
    padding: 0 1rem;
  }

  .contact-form-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .floating-card {
    padding: 0.8rem;
    font-size: 0.8rem;
  }

  .floating-card i {
    font-size: 1.5rem;
  }

  .projects-filter {
    justify-content: center;
  }

  .contact-form-container {
    padding: 1.5rem;
  }
}

/* حالت تاریک (اختیاری) */
@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-light: #9ca3af;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-card: #374151;
  }

  .navbar {
    background: rgba(17, 24, 39, 0.95);
  }

  .about-card,
  .service-card,
  .project-card,
  .contact-form-container {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* اصلاحات برای RTL */
[dir="rtl"] .nav-menu {
  right: -100%;
}

[dir="rtl"] .nav-menu.active {
  right: 0;
}

[dir="rtl"] .back-to-top {
  left: auto;
  right: 2rem;
}

[dir="rtl"] .scroll-indicator {
  right: 50%;
  left: auto;
}

[dir="rtl"] .project-actions {
  direction: ltr;
}

[dir="rtl"] .social-links {
  direction: ltr;
}

[dir="rtl"] .footer-social {
  direction: ltr;
}

/* صفحه پروژه‌ها */
.page-header {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.page-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-normal);
}

.breadcrumb a:hover {
  color: white;
}

.projects-page {
  padding: 4rem 0;
}

.projects-filter-enhanced {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
  text-align: center;
}

.projects-filter-enhanced h3 {
  margin-bottom: 2rem;
  color: #1f2937;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.project-count {
  color: #6b7280;
  font-size: 1.1rem;
}

.projects-grid-extended {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.project-card-extended {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.project-card-extended.new .project-badge {
  display: block;
}

.project-card-extended:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  display: none;
}

.project-category {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-stats {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.stat i {
  color: var(--primary-color);
}

.project-actions-bottom {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-normal);
  flex: 1;
  text-align: center;
}

.btn-small.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-small.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.projects-cta-section {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-top: 4rem;
}

.projects-cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.projects-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* موبایل */
@media (max-width: 768px) {
  .projects-grid-extended {
    grid-template-columns: 1fr;
  }

  .project-stats {
    flex-direction: column;
    gap: 0.8rem;
  }

  .project-actions-bottom {
    flex-direction: column;
  }

  .page-title {
    font-size: 2rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .projects-cta-section {
    padding: 2rem 1rem;
  }
}

/* صفحه درباره ما */
.about-hero {
  padding: calc(var(--header-height) + 2rem) 0 4rem;
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Mission & Vision */
.mission-vision {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mission-card,
.vision-card {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.mission-card::before,
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.mission-card .card-icon,
.vision-card .card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.mission-card p,
.vision-card p {
  line-height: 1.7;
  color: #6b7280;
}

/* Story Section */
.our-story {
  padding: 6rem 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-timeline {
  position: relative;
  padding-right: 2rem;
}

.story-timeline::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--gradient-primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-right: 3rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.story-visual {
  position: relative;
}

.story-image {
  position: relative;
  height: 400px;
  background: var(--gradient-secondary);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-stats {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.floating-stat {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--text-inverse);
  animation: float 3s ease-in-out infinite;
  color: var(--primary-dark);
}

.floating-stat:nth-child(2) {
  animation-delay: 0.5s;
}

.floating-stat:nth-child(3) {
  animation-delay: 1s;
}

.floating-stat i {
  color: var(--primary-dark);
  font-size: 1.2rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Values Section */
.our-values {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Team Section */
.our-team {
  padding: 6rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.member-avatar {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 2.5rem;
}

.member-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.member-role {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-social a {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-normal);
}

.member-social a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Process Section */
.our-process {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.step-content p {
  color: #6b7280;
  line-height: 1.6;
}

/* Awards Section */
.awards {
  padding: 6rem 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.award-item {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid rgba(248, 183, 36, 0.2);
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.award-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #0bf571);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.award-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.award-item p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* About CTA */
.about-cta {
  padding: 6rem 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* موبایل - صفحه درباره ما */
@media (max-width: 768px) {
  .about-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-card,
  .vision-card {
    padding: 2rem;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-timeline {
    padding-right: 1rem;
  }

  .timeline-item {
    padding-right: 2rem;
  }

  .story-image {
    height: 300px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

/* صفحه خدمات */
.services-hero {
  padding: calc(var(--header-height) + 2rem) 0 4rem;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.services-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.overview-item {
  text-align: center;
}

.overview-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.overview-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* Interactive Services */
.interactive-services {
  padding: 6rem 0;
}

.services-tabs {
  max-width: 1200px;
  margin: 0 auto;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: white;
  border: 2px solid rgba(99, 102, 241, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: inherit;
  color: #1f2937;
}

.tab-btn:hover,
.tab-btn.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tab-btn i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.tab-btn span {
  font-weight: 600;
}

.tab-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.service-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.service-pricing {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  text-align: center;
}

.service-pricing h4 {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.service-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

/* Browser Mockup */
.mockup-browser {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.browser-header {
  background: #f1f3f4;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.browser-buttons {
  display: flex;
  gap: 0.5rem;
}

.browser-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.btn-close {
  background: #ff5f56;
}
.btn-minimize {
  background: #ffbd2e;
}
.btn-maximize {
  background: #27ca3f;
}

.browser-url {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  flex: 1;
}

.browser-content {
  height: 300px;
  padding: 2rem;
}

.content-placeholder .placeholder-header {
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.placeholder-nav {
  height: 40px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.placeholder-hero {
  height: 80px;
  background: linear-gradient(135deg, #90a4ff, #002eff);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.placeholder-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.placeholder-cards .card {
  height: 60px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
}

/* Phone Mockup */
.mockup-phone {
  position: relative;
}

.phone-frame {
  width: 200px;
  height: 400px;
  background: #333;
  border-radius: 25px;
  padding: 20px 10px;
  box-shadow: var(--shadow-xl);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
}

.app-content {
  padding: 1rem;
  height: 100%;
}

.app-header {
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.app-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.app-tabs .tab {
  flex: 1;
  height: 30px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
}

.app-tabs .tab.active {
  background: var(--primary-color);
}

.app-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.app-card {
  height: 50px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
}

/* SEO Chart */
.seo-chart {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 350px;
}

.chart-header {
  text-align: center;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.chart-content {
  height: 200px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 1rem;
  height: 150px;
  margin-bottom: 1rem;
}

.bar {
  flex: 1;
  background: var(--gradient-primary);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  animation: growUp 1s ease-out;
}

@keyframes growUp {
  from {
    height: 0;
  }
  to {
    height: var(--final-height);
  }
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Before/After */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.before h4,
.after h4 {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.old-design,
.new-design {
  height: 200px;
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.old-design {
  background: #f5f5f5;
}

.new-design {
  background: white;
}

.old-header {
  height: 30px;
  background: #ccc;
  margin-bottom: 1rem;
}

.old-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  height: calc(100% - 40px);
}

.old-sidebar {
  background: #ddd;
}

.old-main {
  background: #e9e9e9;
}

.new-header {
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.new-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: calc(100% - 50px);
}

.new-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  flex: 1;
}

/* Process Timeline */
.process-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-step {
  background: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 2rem;
  color: #1f2937;
}

.step-content p {
  color: #6b7280;
  line-height: 1.6;
}

.services-cta {
  padding: 6rem 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-actions .btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* صفحه تماس */
.contact-hero {
  padding: calc(70px + 2rem) 0 4rem;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.contact-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.info-content h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-form-section {
  padding: 6rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #6b7280;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1f2937;
}

.required {
  color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 2px solid rgba(99, 102, 241, 0.1);
  border-radius: 8px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #1f2937;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  background-color: #ffffff;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #6366f1;
  border-color: #6366f1;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.link {
  color: #6366f1;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #6b7280;
}

.feature-list i {
  color: #6366f1;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  color: #1f2937;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #6366f1;
  color: white;
  transform: translateX(-5px);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateX(-5px);
}

.social-link.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-link.telegram {
  background: #0088cc;
}

.social-link.linkedin {
  background: #06b500;
}

.faq-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: white;
  border: none;
  width: 100%;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  transition: all var(--transition-normal);
}

.faq-question:hover {
  color: white;
  background: var(--bg-secondary);
}

.faq-question i {
  color: var(--primary-color);
  transition: all var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
  background: var(--bg-secondary);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* صفحه اصلی - بخش‌های جدید */
.stats-about-teaser {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.stats-section {
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.about-teaser {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.teaser-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.teaser-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.teaser-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.teaser-features .feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
}

.teaser-features i {
  color: var(--primary-color);
}

.teaser-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.teaser-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-placeholder {
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  box-shadow: var(--shadow-lg);
}

.services-teaser {
  padding: 6rem 0;
  background: white;
}

.services-teaser .teaser-content {
  text-align: center;
}

.services-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.services-intro p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-quick {
  background: var(--bg-secondary);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.service-quick:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-quick i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-quick span {
  font-weight: 600;
  color: var(--text-primary);
}

.services-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-cta {
  padding: 6rem 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.home-cta .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.home-cta .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.home-cta .cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-cta .btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.home-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* موبایل - صفحات جدید */
@media (max-width: 768px) {
  .services-overview {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tab-buttons {
    grid-template-columns: 1fr;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-content .service-visual {
    order: -1;
  }

  .service-actions {
    justify-content: center;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-quick-info {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-teaser {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .teaser-content {
    text-align: center;
  }

  .services-preview {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-quick {
    padding: 1.5rem 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.send-message {
  display: inline;
  font-family: "Vazirmatn";
}

/* Simple mobile fix - disable all scroll animations */
@media (max-width: 768px) {
  /* Hide custom cursor on mobile */
  .cursor,
  .cursor-follower {
    display: none !important;
  }

  /* Disable all transforms and animations that could cause scrolling issues */
  .parallax,
  .floating-shapes .shape {
    transform: none !important;
  }

  /* Simplify animations */
  .fade-in,
  .slide-right,
  .slide-left {
    opacity: 1 !important;
    transform: none !important;
  }
}
