/* استایل های واکنش گرا */

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    padding: 20px;
  }
  
  .nav-item {
    margin: 10px 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .demo-content {
    padding-left: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .cta-title {
    font-size: 2.2rem;
  }
  
  .footer-section {
    flex: 100%;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons .btn {
    padding: 10px 20px;
    margin: 5px;
  }
  
  .timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .timeline-icon {
    margin-left: 0;
    margin-bottom: 15px;
  }
  
  .timeline-progress {
    display: none;
  }
  
  .stat-card {
    margin-bottom: 30px;
  }
  
  .partner-logo {
    padding: 15px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .header-wrapper {
    padding: 10px 0;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .auth-buttons .btn span {
    display: none;
  }
  
  .auth-buttons .btn i {
    margin: 0;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .mobile-menu-toggle.active .hamburger-icon {
    background: transparent !important;
  }
  
  .mobile-menu-toggle.active .hamburger-icon::before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .mobile-menu-toggle.active .hamburger-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
}