@font-face {
  font-family: "Vazirmatn";
  src: url("https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn-font@v33.003/fonts/webfonts/Vazirmatn-FD-Regular.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

/* downloaded from https://rokaweb.ir */
@font-face {
  font-family: "Yekan";
  src: url("../fonts/Yekan.eot");
  src: url("../fonts/Yekan.eot") format("embedded-opentype"),
    url("../fonts/Yekan.woff2") format("woff2"),
    url("../fonts/Yekan.woff") format("woff"),
    url("../fonts/Yekan.ttf") format("truetype");
  /* url( '../fonts/' ) format( 'svg' ) */
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Yekan", "Vazirmatn", "Inter", "Segoe UI", Tahoma, Arial,
    sans-serif;
}

body {
  background: #f5f5f5;
  color: #212224;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* ==================== BREADCRUMB SECTION ==================== */
.breadcrumb-section {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2d2d2d 25%,
    #1a1a1a 50%,
    #333333 75%,
    #1a1a1a 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  /* padding-bottom: 30px; */
}

/* Background Animation */
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Subtle Pattern Overlay */
.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* ==================== PAGE TITLE - در بالای section ==================== */
.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
  animation: titleSlideIn 1s ease-out;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 3;
  padding-top: 30px;
  margin-bottom: 20px;
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==================== BREADCRUMB CONTAINER ==================== */
.breadcrumb-container {
  max-width: 1200px;
  width: 100%;
  /* height: 800px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 2;
  padding: 0 40px 30px 40px;
}

/* ==================== BREADCRUMB NAVIGATION ==================== */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  animation: navSlideIn 0.8s ease-out 0.3s both;
  justify-content: center;
}

@keyframes navSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb-link {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.breadcrumb-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.6s ease;
}

.breadcrumb-link:hover::before {
  left: 100%;
}

.breadcrumb-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.breadcrumb-link:last-child {
  color: #d0d0d0;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.breadcrumb-separator {
  color: #707070;
  font-size: 0.85rem;
  margin: 0 5px;
  animation: separatorPulse 2.5s ease-in-out infinite;
  transition: color 0.3s ease;
}

@keyframes separatorPulse {
  0%,
  100% {
    opacity: 0.6;
    color: #707070;
  }
  50% {
    opacity: 1;
    color: #909090;
  }
}

/* ==================== FILTER BUTTON - زیر breadcrumb ==================== */
.filter-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 14px 25px;
  border-radius: 35px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: filterSlideIn 0.8s ease-out 0.6s both;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}

@keyframes filterSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.filter-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.filter-button:hover::before {
  transform: translateX(100%);
}

.filter-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.filter-button:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.filter-button i {
  font-size: 1.1rem;
  animation: filterIconRotate 4s ease-in-out infinite;
}

@keyframes filterIconRotate {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-3deg);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Desktop */
@media (min-width: 1025px) {
  .breadcrumb-section {
    height: 300px;
  }
  .page-title {
    font-size: 3rem;
    padding-top: 30px;
    margin-bottom: 20px;
  }
  .breadcrumb-container {
    padding: 0 40px 30px 40px;
    gap: 25px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .breadcrumb-section {
    height: 260px;
  }
  .page-title {
    font-size: 2.5rem;
    padding-top: 35px;
    margin-bottom: 25px;
  }
  .breadcrumb-container {
    padding: 0 30px 35px 30px;
    gap: 25px;
  }
  .breadcrumb-link {
    font-size: 0.9rem;
    padding: 9px 16px;
  }
  .filter-button {
    padding: 12px 22px;
    font-size: 0.85rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .breadcrumb-section {
    height: 220px;
  }
  .page-title {
    font-size: 2.2rem;
    padding-top: 25px;
    margin-bottom: 20px;
  }
  .breadcrumb-container {
    padding: 0 20px 25px 20px;
    gap: 20px;
  }
  .breadcrumb-nav {
    justify-content: center;
    gap: 8px;
  }
  .breadcrumb-link {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
  .filter-button {
    padding: 11px 20px;
    font-size: 0.8rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .breadcrumb-section {
    height: 260px;
  }
  .page-title {
    font-size: 1.8rem;
    padding-top: 20px;
    margin-bottom: 15px;
  }
  .breadcrumb-container {
    padding: 0 15px 20px 15px;
    gap: 15px;
  }
  .breadcrumb-nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .breadcrumb-separator {
    transform: rotate(90deg);
    margin: 3px 0;
  }
  .breadcrumb-link {
    font-size: 0.8rem;
    padding: 7px 12px;
  }
  .filter-button {
    padding: 10px 18px;
    font-size: 0.75rem;
    gap: 8px;
  }
  .filter-button i {
    font-size: 1rem;
  }
}

/* Mobile - بهینه شده برای نمایش کامل المان‌ها */
@media (max-width: 768px) {
  .breadcrumb-section {
    height: 240px; /* افزایش ارتفاع */
  }
  .page-title {
    font-size: 1.8rem; /* کوچکتر */
    padding-top: 20px; /* کم‌تر */
    margin-bottom: 15px; /* کم‌تر */
  }
  .breadcrumb-container {
    padding: 0 15px 20px 15px; /* کم‌تر */
    gap: 15px; /* کم‌تر */
  }
  .breadcrumb-nav {
    justify-content: center;
    gap: 6px; /* کم‌تر */
    flex-wrap: wrap;
  }
  .breadcrumb-link {
    font-size: 0.75rem; /* کوچکتر */
    padding: 6px 12px; /* کم‌تر */
  }
  .breadcrumb-separator {
    font-size: 0.7rem; /* کوچکتر */
    margin: 0 3px; /* کم‌تر */
  }
  .filter-button {
    padding: 10px 18px; /* کم‌تر */
    font-size: 0.75rem; /* کوچکتر */
    gap: 8px; /* کم‌تر */
    letter-spacing: 0.5px; /* کم‌تر */
  }
}

/* Small Mobile - بهینه‌سازی بیشتر */
@media (max-width: 480px) {
  .breadcrumb-section {
    height: 360px; /* افزایش بیشتر */
  }
  .page-title {
    font-size: 1.5rem; /* خیلی کوچکتر */
    padding-top: 15px; /* خیلی کم */
    margin-bottom: 12px; /* خیلی کم */
  }
  .breadcrumb-container {
    padding: 0 10px 15px 10px; /* خیلی کم */
    gap: 12px; /* خیلی کم */
  }
  .breadcrumb-nav {
    flex-direction: column; /* عمودی */
    gap: 8px; /* کم */
    align-items: center;
    margin-bottom: 20px;
  }
  .breadcrumb-separator {
    transform: rotate(90deg);
    margin: 2px 0; /* خیلی کم */
    font-size: 0.6rem; /* خیلی کوچک */
  }
  .breadcrumb-link {
    font-size: 0.7rem; /* خیلی کوچک */
    padding: 5px 10px; /* خیلی کم */
    border-radius: 15px; /* کم‌تر */
  }
  .filter-button {
    padding: 8px 15px; /* خیلی کم */
    font-size: 0.65rem; /* خیلی کوچک */
    gap: 6px; /* خیلی کم */
    border-radius: 20px; /* کم‌تر */
    letter-spacing: 0.3px; /* خیلی کم */
  }
  .filter-button i {
    font-size: 0.9rem; /* کوچکتر */
  }
}

/* Extra Small Mobile - برای موبایل‌های خیلی کوچک */
@media (max-width: 360px) {
  .breadcrumb-section {
    height: 360px; /* بیشترین ارتفاع */
  }
  .page-title {
    font-size: 1.3rem; /* کوچکترین */
    padding-top: 12px;
    margin-bottom: 10px;
  }
  .breadcrumb-container {
    padding: 0 8px 12px 8px;
    gap: 10px;
  }
  .breadcrumb-nav {
    gap: 6px;
  }
  .breadcrumb-link {
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 12px;
  }
  .breadcrumb-separator {
    font-size: 0.55rem;
    margin: 1px 0;
  }
  .filter-button {
    padding: 6px 12px;
    font-size: 0.6rem;
    gap: 4px;
    border-radius: 15px;
    letter-spacing: 0.2px;
  }
  .filter-button i {
    font-size: 0.8rem;
  }
}

/* ==================== PICTURES SECTION STYLES ==================== */

.pictures-section {
  padding: 80px 40px;
  background: linear-gradient(
    135deg,
    #f8f9fa 0%,
    #e9ecef 25%,
    #ffffff 50%,
    #f1f3f4 75%,
    #f8f9fa 100%
  );
  background-size: 400% 400%;
  animation: sectionBgShift 12s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  margin-top: 80px; /* فاصله از header */
}

/* Background Animation */
@keyframes sectionBgShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Subtle Pattern Overlay */
.pictures-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(0, 0, 0, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Container for articles */
.pictures-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ==================== ARTICLE STYLES ==================== */

.pictures-child {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  animation: articleSlideIn 1s ease-out forwards;
  position: relative;
}

/* Staggered Animation for Articles */
.pictures-child:nth-child(1) {
  animation-delay: 0.2s;
}

.pictures-child:nth-child(2) {
  animation-delay: 0.4s;
}

.pictures-child:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes articleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==================== PRODUCT CARD STYLES ==================== */

.pictures-child > div {
  flex: 1;
  max-width: 500px;
  position: relative;
  perspective: 1000px;
}

.pictures-child a {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateZ(0);
}

/* Hover Effects */
.pictures-child a:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Hover Shine Effect */
.pictures-child a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.7s ease;
  z-index: 3;
  pointer-events: none;
}

.pictures-child a:hover::before {
  left: 100%;
}

/* ==================== IMAGE STYLES ==================== */

.pictures-child-picture {
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  filter: contrast(1.05) brightness(1.02);
}

.pictures-child a:hover .pictures-child-picture {
  transform: scale(1.08);
  filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

/* ==================== TEXT STYLES ==================== */

.pictures-child-info {
  padding: 25px 30px;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #212529;
  text-align: center;
  background: #ffffff;
  position: relative;
  transition: all 0.4s ease;
  letter-spacing: -0.01em;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pictures-child a:hover .pictures-child-info {
  color: #000000;
  transform: translateY(-3px);
  font-weight: 700;
}

/* Text Underline Animation */
.pictures-child-info::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #333333, #666666);
  transition: width 0.4s ease;
}

.pictures-child a:hover .pictures-child-info::after {
  width: 60px;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Desktop - لپتاپ (1025px+) */
@media (min-width: 1025px) {
  .pictures-section {
    padding: 100px 60px;
    gap: 80px;
  }

  .pictures-child {
    gap: 50px;
  }

  .pictures-child-picture {
    height: 350px;
  }

  .pictures-child-info {
    font-size: 1.4rem;
    padding: 30px 35px;
  }
}

/* Tablet - تبلت (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .pictures-section {
    padding: 80px 40px;
    gap: 60px;
  }

  .pictures-child {
    gap: 35px;
  }

  .pictures-child-picture {
    height: 280px;
  }

  .pictures-child-info {
    font-size: 1.2rem;
    padding: 22px 25px;
  }

  .pictures-child a:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(3deg);
  }
}

/* Mobile - موبایل (768px و پایین‌تر) */
@media (max-width: 768px) {
  .pictures-section {
    padding: 60px 20px;
    gap: 50px;
    margin-top: 80px;
  }

  .pictures-child {
    gap: 20px;
    flex-direction: row; /* همچنان دو تصویر در کنار هم */
  }

  .pictures-child > div {
    max-width: none;
    flex: 1;
  }

  .pictures-child-picture {
    height: 220px;
  }

  .pictures-child-info {
    font-size: 1rem;
    padding: 18px 20px;
    letter-spacing: 0;
  }

  .pictures-child a:hover {
    transform: translateY(-8px) rotateX(2deg);
  }

  /* Reduce animation intensity on mobile */
  .pictures-child a:hover .pictures-child-picture {
    transform: scale(1.05);
  }
}

/* Small Mobile - موبایل کوچک (480px و پایین‌تر) */
@media (max-width: 480px) {
  .pictures-section {
    padding: 40px 15px;
    gap: 35px;
  }

  .pictures-child {
    gap: 15px;
  }

  .pictures-child-picture {
    height: 180px;
  }

  .pictures-child-info {
    font-size: 0.95rem;
    padding: 15px 18px;
  }

  .pictures-child a {
    border-radius: 15px;
  }

  /* Simplified hover effects for small screens */
  .pictures-child a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12), 0 3px 15px rgba(0, 0, 0, 0.06);
  }

  .pictures-child a:hover .pictures-child-picture {
    transform: scale(1.03);
  }
}

/* Extra Small Mobile - موبایل خیلی کوچک (360px و پایین‌تر) */
@media (max-width: 360px) {
  .pictures-section {
    padding: 30px 10px;
    gap: 25px;
  }

  .pictures-child {
    gap: 10px;
  }

  .pictures-child-picture {
    height: 150px;
  }

  .pictures-child-info {
    font-size: 0.85rem;
    padding: 12px 15px;
  }

  .pictures-child a {
    border-radius: 12px;
  }
}

/* ==================== LOADING ANIMATION ==================== */

/* اگر نیاز به loading animation دارید */
.pictures-child.loading {
  opacity: 0.7;
}

.pictures-child.loading .pictures-child-picture {
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* ==================== ACCESSIBILITY ==================== */

/* Focus states for keyboard navigation */
.pictures-child a:focus {
  outline: 3px solid rgba(0, 0, 0, 0.3);
  outline-offset: 4px;
}

.pictures-child a:focus:not(:focus-visible) {
  outline: none;
}

/* Reduced motion for users who prefer less animation */
@media (prefers-reduced-motion: reduce) {
  .pictures-section,
  .pictures-child,
  .pictures-child a,
  .pictures-child-picture,
  .pictures-child-info {
    animation: none;
    transition: none;
  }

  .pictures-child a:hover {
    transform: none;
  }
}

.footer-section {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #1a1a1a 25%,
    #2d2d2d 50%,
    #1a1a1a 75%,
    #000000 100%
  );
  background-size: 400% 400%;
  animation: footerBgShift 15s ease-in-out infinite;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Background Animation */
@keyframes footerBgShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Subtle Pattern Overlay */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ==================== CTA SECTION ==================== */
.footer-cta {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  animation: ctaSlideIn 1s ease-out 0.3s forwards;
}

@keyframes ctaSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-cta h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-cta p {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #404040 0%, #2a2a2a 100%);
}

.cta-button:hover::before {
  left: 100%;
}

/* ==================== FOOTER CONTENT ==================== */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  animation: contentSlideIn 1s ease-out 0.6s forwards;
}

@keyframes contentSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== COMPANY INFO ==================== */
.company-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.company-logos {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.company-logos img {
  height: 50px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.company-logos img:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: brightness(1.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info p {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.contact-info p:hover {
  color: #ffffff;
}

/* ==================== SOCIAL MEDIA ==================== */
.social-media {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #b8b8b8;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.social-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.social-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Specific social media colors on hover */
.social-link:hover .bi-instagram {
  color: #e4405f;
}
.social-link:hover .bi-facebook {
  color: #1877f2;
}
.social-link:hover .bi-pinterest {
  color: #bd081c;
}
.social-link:hover .bi-youtube {
  color: #ff0000;
}
.social-link:hover .bi-linkedin {
  color: #0a66c2;
}
.social-link:hover .bi-whatsapp {
  color: #25d366;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-media {
    justify-content: center;
    gap: 12px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .social-media {
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

/* ==================== NAVIGATION LINKS ==================== */
.footer-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.nav-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-column a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-column a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transition: left 0.3s ease;
}

.nav-column a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  padding-right: 20px;
}

.nav-column a:hover::before {
  left: 0;
}

/* ==================== KUBAN SECTION ==================== */
.kuban-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}

.kuban-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.kuban-links a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kuban-links a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transition: right 0.3s ease;
}

.kuban-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-8px);
  padding-left: 20px;
}

.kuban-links a:hover::before {
  right: 0;
}

/* ==================== FOOTER BOTTOM ==================== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: bottomSlideIn 1s ease-out 0.9s forwards;
}

@keyframes bottomSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-bottom p {
  color: #808080;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }

  .footer-cta h2 {
    font-size: 2.4rem;
  }

  .footer-cta p {
    font-size: 1.1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .footer-navigation {
    /* display: none; */
    display: none !important;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .company-logos {
    justify-content: center;
  }

  .social-media {
    justify-content: center;
  }
  .kuban-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

/* Mobile (768px و پایین‌تر) */
@media (max-width: 768px) {
  .kuban-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-cta {
    margin-bottom: 60px;
  }

  .footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .footer-cta p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-navigation {
    /* grid-template-columns: 1fr;
    gap: 25px; */
    display: none !important;
  }

  .company-logos {
    justify-content: center;
    gap: 20px;
  }

  .company-logos img {
    height: 40px;
  }

  .social-media {
    justify-content: center;
    gap: 12px;
  }

  .social-media i {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .nav-column a,
  .kuban-links a {
    font-size: 0.95rem;
    padding: 6px 12px;
  }
}

/* Small Mobile (480px و پایین‌تر) */
@media (max-width: 480px) {
  .footer-section {
    padding: 40px 0 20px;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-cta h2 {
    font-size: 1.8rem;
  }

  .footer-cta p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .footer-content {
    gap: 30px;
  }

  .company-logos {
    flex-wrap: wrap;
    gap: 15px;
  }

  .company-logos img {
    height: 35px;
  }

  .social-media {
    gap: 10px;
  }

  .social-media i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .nav-column a,
  .kuban-links a {
    font-size: 0.9rem;
    padding: 5px 10px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .kuban-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

/* Extra Small Mobile (360px و پایین‌تر) */
@media (max-width: 360px) {
  .footer-cta h2 {
    font-size: 1.6rem;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .company-logos img {
    height: 30px;
  }

  .social-media i {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .nav-column a,
  .kuban-links a {
    font-size: 0.85rem;
  }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  .footer-section,
  .footer-cta,
  .footer-content,
  .footer-bottom {
    animation: none;
  }
}

/* مخفی کردن navigation در تبلت و لپتاپ */
@media (min-width: 769px) {
  .footer-navigation {
  }

  .footer-content {
    grid-template-columns: 1fr 1fr; /* تغییر از 1fr 2fr 1fr به 1fr 1fr */
    gap: 80px;
  }
}
/* Header Dropdown Styles */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.sidebar-category {
  padding: 10px 20px;
}

.category-title {
  font-family: "Vazirmatn", sans-serif;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.category-title.active .bi-chevron-down {
  transform: rotate(180deg);
}

.category-links {
  display: none;
  padding-right: 20px;
}

.category-links.active {
  display: block;
}

.sidebar-link {
  font-family: "Vazirmatn", sans-serif;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.sidebar-link:hover {
  color: #e67e22;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-menu-btn {
    display: none;
  }

  .sidebar {
    display: none;
  }

  .sidebar-overlay {
    display: none;
  }
}
