/* ===========================
   About Page Additions (NEW)
   =========================== */

   .aboutBullets{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aboutBullet{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    color: var(--primary-text);
}

.aboutBullet i{
    font-size: 22px;
    color: var(--primary-color);
}

.aboutBtns{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
}

.aboutBtn{
    height: 52px;
    padding: 0 18px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'shabnam';
    transition: all 250ms ease-in-out;
}

.aboutBtn.primary{
    background-color: var(--primary-color);
    color: #ffffff;
}

.aboutBtn.primary:hover{
    filter: brightness(0.95);
}

.aboutBtn.outline{
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.aboutBtn.outline:hover{
    background-color: rgba(40, 113, 148, 0.08);
}

/* -------- Stats Section -------- */
.aboutStats{
    width: 80%;
    margin: 0 auto;
    margin-top: 25px;
    padding: 35px 0;
}

.statsTitle{
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
}

.statsSub{
    margin-top: 10px;
    color: var(--primary-text);
    text-align: right;
}

.statsGrid{
    width: 100%;
    margin-top: 25px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.statCard{
    width: calc(100% / 4.25);
    min-height: 150px;
    border-radius: 18px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    background-color: #ffffff;
}

.statCard i{
    font-size: 30px;
    color: var(--primary-color);
}

.statNum{
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.statLabel{
    color: var(--primary-text);
    font-size: 14px;
}

/* -------- Why Points (inside whyNegin) -------- */
.whyPoints{
    width: 100%;
    margin-top: 25px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.whyPoint{
    width: calc(100% / 3.2);
    border-radius: 18px;
    padding: 16px;
    background-color: #ffffff;
    box-shadow: rgba(50, 50, 105, 0.12) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 12px;
}

.whyPoint i{
    font-size: 28px;
    color: var(--primary-color);
}

.whyPoint h4{
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 6px;
}

.whyPoint p{
    color: var(--primary-text);
    font-size: 14px;
}

/* -------- FAQ -------- */
.faqSection{
    width: 80%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
}

.faqTitle{
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
}

.faqWrap{
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faqItem{
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    box-shadow: rgba(50, 50, 105, 0.10) 0px 2px 5px 0px, rgba(0, 0, 0, 0.04) 0px 1px 1px 0px;
}

.faqQ{
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    font-size: 16px;
    color: var(--primary-color);
}

.faqQ i{
    font-size: 24px;
    transition: all 200ms ease-in-out;
}

.faqItem.open .faqQ i{
    transform: rotate(180deg);
}

.faqA{
    display: none;
    padding: 0 16px 16px 16px;
    color: var(--primary-text);
    font-size: 14px;
    line-height: 1.9;
}

.faqCta{
    width: 100%;
    margin-top: 22px;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
  
/* fixed background layer */
.faqCtaBg{
  position: absolute;
  inset: 0;
  background-image: url("../images/travelStrat.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.03);
  z-index: 1;
}
  
/* dark overlay + soft gradient */
.faqCta::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
  z-index: 2;
}
  
/* content */
.faqCtaInner{
  width: 95%;
  padding: 26px 22px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: rgba(0, 0, 0, 0.28) 0px 20px 45px -20px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
  
/* text */
.faqCtaText{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 6px;
}
  
.faqCtaTitle{
  font-size: 22px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.6;
}
  
.faqCtaSub{
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  max-width: 56ch;
}
  
/* button */
.faqCtaBtn{
  height: 54px;
  padding: 0 18px;
  border-radius: 14px;
  background-color: #ffffff;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;

  box-shadow: rgba(255, 255, 255, 0.22) 0px 10px 24px -12px;
  transition: all 250ms ease-in-out;
}
  
.faqCtaBtn i{
  font-size: 22px;
  transition: all 250ms ease-in-out;
}
  
.faqCtaBtn:hover{
  transform: translateY(-2px);
  box-shadow: rgba(255, 255, 255, 0.35) 0px 18px 32px -18px;
}
  
.faqCtaBtn:hover i{
  transform: translateX(-4px);
}
  
/* responsive */
@media (max-width: 768px){
  .faqCtaBg{
    background-attachment: scroll; /* برای موبایل بهتره */
  }

  .faqCtaInner{
    flex-direction: column;
    align-items: start;
  }

  .faqCtaBtn{
    width: 100%;
    justify-content: space-between;
  }
}

/* -------- Responsive additions -------- */
@media (max-width: 992px) {
    .aboutStats, .faqSection{
        width: 100%;
    }

    .statCard{
        width: calc(100% / 2.1);
    }

    .whyPoint{
        width: 100%;
    }

    .statsTitle{
        font-size: 26px;
    }

    .faqTitle{
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .aboutBtns{
        flex-direction: column;
        width: 100%;
    }

    .aboutBtn{
        width: 100%;
    }

    .statCard{
        width: 100%;
    }
}