@font-face {
  font-family: "ABCFavorit";
  src: url("../font/ABCFavorit-Regular-Trial.otf");
  font-weight: normal;
}
@font-face {
  font-family: "ABCFavoritArabic";
  src: url("../font/ABCFavoritArabic-Regular.otf");
  font-weight: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "ABCFavoritArabic", "ABCFavorit", sans-serif;
  background: #000000;
  color: #FFFFFF;
  overflow-x: hidden;
}

html[lang=ar] body {
  font-family: "ABCFavoritArabic", sans-serif;
  direction: rtl;
}

.faq-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  background: #000000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 768px) {
  .faq-wrap {
    min-height: 100vh;
  }
}

.faq-bg-img {
  position: absolute;
  width: 100%;
  height: 890px;
  left: 0;
  top: 0;
  background-image: url("../imgs/FQA-en.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 768px) {
  .faq-bg-img {
    height: 890px;
    background: url("../imgs/FQA-en-M.png");
    background-size: cover;
  }
}

html[lang=ar] .faq-bg-img {
  background-image: url("../imgs/FQA-AR.png");
}
@media (max-width: 768px) {
  html[lang=ar] .faq-bg-img {
    background-image: url("../imgs/FQA-ar-M.png");
  }
}

.top-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1360px;
  height: 48px;
  margin: 40px auto 0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .top-bar {
    padding: 0 18px;
    margin-top: 40px;
  }
}

.logo-main img {
  width: 91px;
  height: 48px;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 68px;
}
@media (max-width: 768px) {
  .nav-items {
    display: none;
  }
}

.faq-link {
  font-family: "ABCFavoritArabic";
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
}
.faq-link:hover {
  opacity: 0.8;
}

.lang-box {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-box a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: "ABCFavoritArabic";
  font-size: 16px;
}

.arrow-down {
  width: 10px;
  height: 6px;
}

.globe-icon {
  width: 16px;
  height: 16px;
}

.mobile-menu-icon {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu-icon {
    display: block;
    width: 26px;
    height: 16px;
    position: relative;
    cursor: pointer;
  }
  .mobile-menu-icon .menu-icon {
    width: 26px;
    height: 16px;
    display: block;
  }
}

.faq-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1360px;
  margin: 80px auto 0;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .faq-content {
    padding: 0 18px;
    margin-top: 80px;
  }
}

.faq-title {
  width: 100%;
  max-width: 496px;
  font-family: "ABCFavoritArabic";
  font-weight: 400;
  font-size: 70px;
  line-height: 70px;
  letter-spacing: -0.02em;
  color: #C3A07D;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 60px;
    line-height: 60px;
    max-width: 356px;
    margin-bottom: 80px;
  }
}

html[lang=ar] .faq-title {
  text-align: right;
}

.faq-items {
  display: flex;
  flex-direction: column;
}

.faq-line {
  width: 100%;
  height: 0px;
  border-top: 1px solid #FFFFFF;
  margin: 0;
}

.faq-item {
  display: flex;
  padding: 35px 0;
  gap: 40px;
}
@media (max-width: 768px) {
  .faq-item {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
  }
}
.faq-item .faq-question {
  flex: 0 0 40%;
  font-family: "ABCFavoritArabic";
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.02em;
  color: #C3A07D;
}
@media (max-width: 768px) {
  .faq-item .faq-question {
    font-size: 40px;
    line-height: 50px;
  }
}
.faq-item .faq-answer {
  flex: 1;
  font-family: "ABCFavoritArabic";
  font-size: 24px;
  line-height: 140%;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .faq-item .faq-answer {
    font-size: 18px;
  }
}
 

.mobile-menu-overlay {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 29vh;
    background-color: rgb(76, 76, 76);
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
  .mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-menu-overlay .menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 40px;
  }
  .mobile-menu-overlay .menu-link {
    font-family: "ABCFavoritArabic", "ABCFavorit", sans-serif;
    
    color: #FFFFFF;
    text-decoration: none;
  }
  .mobile-menu-overlay .menu-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
  }
}

body.no-scroll {
  overflow: hidden;
}
.logo-main img{
   height: auto !important;
   width: 130px !important;
}
.foot-logo img {
    width: 82px !important;
    height: auto !important;
    
}