@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap");
@font-face {
  font-family: "Vazir";
  font-weight: normal;
  src: url("../fonts/Vazir.398b39dd0060.ttf") format("truetype");
}
@font-face {
  font-family: "Vazir";
  font-weight: bold;
  src: url("../fonts/Vazir-Bold.8cea4a726814.ttf") format("truetype");
}
:root {
  --swiper-theme-color: #3f51b5;
  --swiper-pagination-bullet-size: 12px;
  --swiper-navigation-size: 30px;
}

.home-container {
  font-family: "Vazir", serif;
  font-size: 1.25rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  overflow-x: hidden;
}

.full-screen-swiper {
  width: 100%;
  height: 85vh;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(3, 24, 29, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
}
.full-screen-swiper .swiper-button-next, .full-screen-swiper .swiper-button-prev {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-top: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  position: absolute !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  cursor: pointer !important;
}
.full-screen-swiper .swiper-button-next::before, .full-screen-swiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 216, 166, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.full-screen-swiper .swiper-button-next::after, .full-screen-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1;
}
.full-screen-swiper .swiper-button-next:hover, .full-screen-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(233, 216, 166, 0.6);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(233, 216, 166, 0.4);
}
.full-screen-swiper .swiper-button-next:hover::before, .full-screen-swiper .swiper-button-prev:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}
.full-screen-swiper .swiper-button-next:hover::after, .full-screen-swiper .swiper-button-prev:hover::after {
  transform: scale(1.3);
  color: #E9D8A6;
  text-shadow: 0 0 20px rgba(233, 216, 166, 0.8);
}
.full-screen-swiper .swiper-button-next:active, .full-screen-swiper .swiper-button-prev:active {
  transform: translateY(-50%) scale(0.95);
}
@keyframes glowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}
.full-screen-swiper .swiper-button-prev {
  left: 30px !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}
.full-screen-swiper .swiper-button-next {
  right: 30px !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}
[dir=rtl] .full-screen-swiper .swiper-button-prev {
  left: auto !important;
  right: 30px !important;
}
[dir=rtl] .full-screen-swiper .swiper-button-next {
  right: auto !important;
  left: 30px !important;
}
.full-screen-swiper .swiper-pagination {
  bottom: 30px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  width: auto !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.full-screen-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.6;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin: 0 6px !important;
  border: 2px solid transparent;
}
.full-screen-swiper .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 216, 166, 0.6) 0%, transparent 70%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.full-screen-swiper .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: all 0.4s ease;
}
.full-screen-swiper .swiper-pagination-bullet:hover {
  opacity: 1;
  transform: scale(1.4);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(233, 216, 166, 0.5);
  box-shadow: 0 0 15px rgba(233, 216, 166, 0.5);
}
.full-screen-swiper .swiper-pagination-bullet:hover::before {
  transform: translate(-50%, -50%) scale(1.8);
}
.full-screen-swiper .swiper-pagination-bullet:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  animation: sparkle 1.5s ease-in-out infinite;
}
.full-screen-swiper .swiper-pagination-bullet-active {
  width: 40px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #E9D8A6 0%, rgb(243.1081081081, 233.9189189189, 206.8918918919) 100%);
  opacity: 1;
  box-shadow: 0 0 20px rgba(233, 216, 166, 0.6), 0 0 40px rgba(233, 216, 166, 0.3);
  border-color: rgba(233, 216, 166, 0.8);
  animation: activePulse 2s ease-in-out infinite;
}
.full-screen-swiper .swiper-pagination-bullet-active::before {
  display: none;
}
.full-screen-swiper .swiper-pagination-bullet-active::after {
  display: none;
}
@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes activePulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(233, 216, 166, 0.6), 0 0 40px rgba(233, 216, 166, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(233, 216, 166, 0.8), 0 0 60px rgba(233, 216, 166, 0.5);
  }
}
.full-screen-swiper .swiper-slide {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.full-screen-swiper .swiper-slide-active .home-product {
  filter: brightness(1);
  transform: scale(1);
}
.full-screen-swiper .swiper-slide-active .home-product::after {
  opacity: 1;
}
.full-screen-swiper .swiper-slide:not(.swiper-slide-active) .home-product {
  filter: brightness(0.7);
  transform: scale(0.95);
}
.full-screen-swiper .swiper-slide:not(.swiper-slide-active) .home-product::after {
  opacity: 0.3;
}

.scroll-down-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}
.scroll-down-button i {
  color: white;
  font-size: 1.2rem;
}
.scroll-down-button:hover {
  background-color: #E9D8A6;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-15px) translateX(-50%);
  }
  60% {
    transform: translateY(-7px) translateX(-50%);
  }
}

.header-scrolled {
  background-color: rgba(3, 24, 29, 0.95) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0 !important;
}
.header-scrolled .nav-link {
  color: #f5f5f5 !important;
}
.header-scrolled .nav-link:hover {
  color: #E9D8A6 !important;
}
.header-scrolled .nav-link.active {
  color: #E9D8A6 !important;
}

/* 2️⃣ اسلایدر کارت‌های خبری */
.news-swiper {
  width: 85%;
  height: 320px;
  margin: auto;
}

/* 3️⃣ اسلایدر مشتریان (گرید) */
.clients-swiper {
  width: 85%;
  height: 350px;
  margin-bottom: 6rem;
}

.clients-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.clients-swiper .swiper-slide:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transform: scale(1.02);
}

.home-news {
  display: flex;
  max-height: 100%;
  padding: 0.5rem;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Vazir", serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
}
.home-news:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.home-news:hover h4 {
  color: #E9D8A6;
}
.home-news:hover img {
  filter: brightness(0.85);
  transform: scale(1.05);
}
.home-news-left {
  width: 50%;
  padding: 1rem;
  max-height: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
}
.home-news-left h4 {
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}
.home-news-left span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width: 980px) {
  .home-news-left span {
    -webkit-line-clamp: 4;
  }
}
.home-news-right {
  width: 50%;
  max-height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.home-news-right img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.home-product {
  width: 100%;
  height: 100% !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  filter: brightness(0.9);
  color: black;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.home-product a {
  z-index: 2;
}
.home-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.home-product::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(233, 216, 166, 0.08) 0%, transparent 50%);
  animation: rotate 15s linear infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.home-product:hover::after {
  animation: rotate 10s linear infinite, pulse 2s ease-in-out infinite;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(233, 216, 166, 0.12) 0%, transparent 50%);
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}
.home-product .home-pr-title {
  font-weight: 700;
  font-size: 3.2rem;
  z-index: 2;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInDown 0.4s ease-out;
  color: white;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 0, 0, 0.4);
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-product .home-pr-title:hover {
  transform: translateY(-5px) scale(1.02);
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 0, 0, 0.5);
}
.home-product .home-pr-short {
  font-weight: 400;
  max-width: 70%;
  font-family: "Vazir", serif;
  font-size: 1.2rem;
  line-height: 1.7;
  z-index: 2;
  color: white;
  display: none;
  animation: fadeInUp 0.5s ease-out 0.15s both;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.4);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-product .home-pr-short:hover {
  transform: translateY(-3px);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 0, 0, 0.5);
}
.home-product .home-pr-button {
  font-family: "Vazir", serif;
  font-size: 18px;
  font-weight: 500;
  background-color: rgba(255, 107, 53, 0.8);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.5s ease-out 0.3s both;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.home-product .home-pr-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.3s ease;
}
.home-product .home-pr-button:hover {
  background-color: #03181d;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(3, 24, 29, 0.5);
}
.home-product .home-pr-button:hover::before {
  left: 100%;
}
.home-product .home-pr-button:active {
  transform: translateY(-3px) scale(1.02);
}

.news-swiper-title {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.news-swiper-title-span {
  width: 85%;
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 700;
  color: #03181d;
  position: relative;
  padding-right: 15px;
}
.news-swiper-title-span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background-color: #E9D8A6;
  border-radius: 3px;
}

.home-news-light {
  background-color: rgba(3, 24, 29, 0.05);
  color: #212121;
}

.home-news-dark {
  background-color: rgba(255, 255, 255, 0.9);
  color: #212121;
}

.contact-section {
  margin-bottom: 6rem;
}

.contact-container {
  width: 85%;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #E9D8A6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-text {
  flex: 1;
}
.contact-text h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #03181d;
}
.contact-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #212121;
}
.contact-text a {
  display: block;
  color: #212121;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.contact-text a:hover {
  color: #E9D8A6;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #03181d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background-color: #E9D8A6;
  transform: translateY(-5px);
}
.social-icon i {
  font-size: 1.2rem;
}

#pic-map {
  flex: 1;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
#pic-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.moshtarian {
  display: block;
}
.moshtarian .swiper-slide {
  padding: 1rem;
}
.moshtarian .swiper-slide img {
  max-width: 100%;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.moshtarian .swiper-slide img:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .full-screen-swiper {
    height: 70vh;
    border-radius: 0 0 20px 20px;
  }
  .full-screen-swiper .swiper-button-next, .full-screen-swiper .swiper-button-prev {
    display: none !important;
  }
  .full-screen-swiper .swiper-pagination {
    bottom: 20px !important;
    padding: 8px 15px;
    gap: 8px;
  }
  .full-screen-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px !important;
  }
  .full-screen-swiper .swiper-pagination-bullet-active {
    width: 30px;
    height: 10px;
  }
  .home-product {
    gap: 1.5rem;
  }
  .home-product .home-pr-title {
    font-size: 2rem;
  }
  .home-product .home-pr-short {
    max-width: 90%;
    font-size: 1rem;
  }
  .home-product .home-pr-button {
    font-size: 16px;
    padding: 0.8rem 2rem;
  }
  .home-news {
    flex-direction: column;
  }
  .home-news-left, .home-news-right {
    width: 100%;
  }
  .home-news-left {
    height: auto;
    order: 2;
  }
  .home-news-right {
    height: 200px;
    order: 1;
  }
  .contact-info {
    padding: 1.5rem;
  }
  .contact-map {
    height: 300px;
  }
}
.faq-container {
  width: 85%;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.question-text {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.faq-toggle {
  font-size: 1.25rem;
  font-weight: bold;
  color: #007bff; /* رنگ آبی برای آیکون */
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0; /* مهم: در حالت بسته، ارتفاع صفر است */
  overflow: hidden; /* مهم: محتوای اضافی را پنهان می‌کند */
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out; /* انیمیشن نرم برای باز شدن */
  background-color: #fafafa;
}

.faq-answer p {
  padding: 0 1.5rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

/* --- حالت فعال (زمانی که پاسخ باز است) --- */
.faq-item.active .faq-answer {
  max-height: 200px; /* یک ارتفاع حداکثری برای نمایش کامل متن */
  padding: 20px 0; /* ایجاد فاصله عمودی برای متن جواب */
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  content: "−";
}

.faq-item.active .faq-question {
  background-color: #f0f8ff; /* تغییر رنگ پس‌زمینه سوال فعال */
}

.faq-section {
  display: flex;
  gap: 1.5rem;
}

.special-section .special-container {
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.special-section .special-container .special-item {
  width: 40%;
}
.special-section .special-container .special-item span {
  color: #FF6B35;
}

@media (max-width: 1000px) {
  .maps-book {
    width: 100%;
  }
}

/*# sourceMappingURL=home.css.2be4e9127aed.map */
