:root {
      --hamrosastobazar-red: #ED1C24;
      --hamrosastobazar-dark-red: #B71C1C;
      --hamrosastobazar-black: #1A1A1A;
      --hamrosastobazar-white: #FFFFFF;
      --hamrosastobazar-light-gray: #F5F5F5;
      --hamrosastobazar-gray: #9E9E9E;
      --hamrosastobazar-dark-gray: #333333;
      --resolved-green: #4CAF50;
      --actually-red: #ED1C24;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--hamrosastobazar-black);
      background: var(--hamrosastobazar-red);
      overflow-x: hidden;
    }

    /* ---- NAV ---- */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: var(--hamrosastobazar-black);
      z-index: 1000;
      padding: 0 2rem;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-text {
      font-size: 1rem;
      font-weight: 800;
      color: var(--hamrosastobazar-white);
      letter-spacing: -0.02em;
    }

    .logo-text span {
      color: var(--hamrosastobazar-red);
    }

    .logo-dot {
      width: 10px;
      height: 10px;
      background: var(--hamrosastobazar-red);
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }

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

    .nav-links a {
      color: var(--hamrosastobazar-gray);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
      letter-spacing: 0.02em;
    }

    .nav-links a:hover {
      color: var(--hamrosastobazar-red);
    }

    /* ---- HAMBURGER MENU ---- */
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 1002;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--hamrosastobazar-white);
      margin: 5px 0;
      transition: transform 0.3s, opacity 0.3s;
    }

    .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(5px, -5px);
    }   
 .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

section {
      padding: 6rem 1rem 0rem 2rem;
      scroll-margin-top: 90px;
    }

.container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 2rem;
    }

.section-red {
      background: var(--hamrosastobazar-red);
      color: var(--hamrosastobazar-white);
      padding: 6rem 1rem 1rem 1rem;
      min-height: calc(100vh - 64px);
      
    }

  .testimonial-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.testimonial-card {
  background: var(--hamrosastobazar-black);
  border-radius: 16px;
  padding: 20px;

}

/* PROFILE */
.profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h4 {
  margin: 0;
  color: var(--actually-red);
  font-size: 1rem;
}

.profile span {
  font-size: 0.85rem;
  color: var(--hamrosastobazar-white);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--hamrosastobazar-white);
  line-height: 1.7;
}

.testimonial-card h2{
    padding: 0.5rem 0rem 0.5rem 0rem;
    font-size: 1.3rem;
  color: var(--resolved-green);
  line-height: 1.7;
}

.testimonial-card ul {
  list-style: none;
  padding-left: 0;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  
}

.quick-links li {
  margin-bottom: 8px;
 
}

.quick-links a {
  text-decoration: none;
  color: var(--hamrosastobazar-white);
  font-size: 1rem;
}

.contact-buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.btn {
 display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn i {
  font-size: 20px;
}

.telegram {
  background: var(--hamrosastobazar-white);
  font-size: 1.2rem;
  color: var(--hamrosastobazar-black);
}

.telegram:hover {
  background: var(--hamrosastobazar-black);
  font-size: 1.2rem;
  color: var(--hamrosastobazar-white);
  border: 1px solid var(--actually-red);
}

.whatsapp {
  border: 1px solid #25D366;
  font-size: 1.2rem;
  color: #25D366;
  background: transparent;
}

.whatsapp:hover {
  background: #25D366;
  color: #000;
}



@media (max-width: 768px) {
 
  /* ---- NAV ---- */
  nav {
    padding: 0 1.25rem;
    height: 56px;
  }
 
  .hamburger {
    display: block;
    flex-direction: column;
    justify-content: center;
     margin-left: auto;
  }
 
  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: calc(100vh - 56px);
    background: rgba(26, 26, 26, 0.6);  
    backdrop-filter: blur(8px);         
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
    display: flex;
  }
 
  .nav-links.open {
    transform: translateX(0);
  }
 
  .nav-links a {
    font-size: 1.1rem;
    color: var(--hamrosastobazar-white);
  }
 
  .logo-text {
    font-size: 0.9rem;
  }

  section {
    padding: 4rem 1rem 0rem 1rem;
    scroll-margin-top: 70px;
  }

  .section-red {
    padding: 4rem 1rem 1rem 1rem;
    min-height: calc(100vh - 56px);
  }

   .container {
    padding: 0 0.1rem 0 1rem; 
  }

  /* ---- TESTIMONIAL / CARDS ---- */
  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }

  .testimonial-card {
    padding: 16px;
    border-radius: 12px;
  }

  .testimonial-card p {
    font-size: 0.875rem;
  }

  .testimonial-card h2 {
    font-size: 1.1rem;
  }
  .profile {
    gap: 10px;
    margin-bottom: 12px;
  }

  .profile img {
    width: 38px;
    height: 38px;
  }

  .profile h4 {
    font-size: 0.9rem;
  }

  .profile span {
    font-size: 0.78rem;
  }

  /* ---- QUICK LINKS ---- */
  .quick-links a {
    font-size: 0.9rem;
  }

  /* ---- CONTACT BUTTONS ---- */
  .contact-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }

  .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .btn i {
    font-size: 18px;
  }

}