/* ============================================
   RESPONSIVE DESIGN - RTL
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .about-image {
    order: -1;
  }

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

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

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: var(--color-white);
    width: 100%;
    text-align: center;
    transition: right 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 0;
  }

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

  html[dir="ltr"] .nav-menu {
    right: auto;
    left: -100%;
  }

  html[dir="ltr"] .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-actions {
    order: -1;
  }

  .language-selector {
    padding: 0.2rem;
  }

  .lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-container {
    gap: 2rem;
  }

  .hero-placeholder {
    height: 350px;
  }

  .about-content {
    gap: 2rem;
  }

  .about-placeholder {
    height: 350px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .eft-features {
    grid-template-columns: 1fr;
  }

  .identification-list {
    font-size: 1.25rem;
  }

  .identification-text {
    font-size: 1.2rem;
  }

  .eft-description {
    font-size: 1.3rem;
  }

  .eft-explanation {
    font-size: 1.1rem;
  }

  .about-intro {
    font-size: 1.25rem;
  }

  .about-belief {
    font-size: 1.05rem;
  }

  .scroll-to-top {
    bottom: 1rem;
    left: 1rem;
    width: 45px;
    height: 45px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  .identification-list {
    font-size: 1.1rem;
    line-height: 2;
  }

  .identification-text {
    font-size: 1.1rem;
  }

  .eft-description {
    font-size: 1.2rem;
  }

  .contact-intro {
    font-size: 1.15rem;
  }

  .step-item {
    padding: 2rem 1.5rem;
  }

  .feature-item {
    padding: 1.5rem 1rem;
  }
}
