@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  user-select: none;
}

body {
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

/* Loader */
.loader-container {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  color: #ed751f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 99999;
  position: fixed;
}

.loader-container p {
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  transform: scale(0.5);
  color: #121212;
  -webkit-text-stroke: 2px gray;
}

.loader-container p:nth-child(1) { animation: hover 1s linear infinite; }
.loader-container p:nth-child(2) { animation: hover 1s linear infinite 0.125s; }
.loader-container p:nth-child(3) { animation: hover 1s linear infinite 0.25s; }
.loader-container p:nth-child(4) { animation: hover 1s linear infinite 0.375s; }
.loader-container p:nth-child(5) { animation: hover 1s linear infinite 0.5s; }
.loader-container p:nth-child(6) { animation: hover 1s linear infinite 0.675s; }
.loader-container p:nth-child(7) { animation: hover 1s linear infinite 0.75s; }
.loader-container p:nth-child(8) { animation: hover 1s linear infinite 0.875s; }
.loader-container p:nth-child(9) { animation: hover 1s linear infinite 1s; }
.loader-container p:nth-child(10) { animation: hover 1s linear infinite 1.125s; }
.loader-container p:nth-child(11) { animation: hover 1s linear infinite 1.25s; }
.loader-container p:nth-child(12) { animation: hover 1s linear infinite 1.375s; }
.loader-container p:nth-child(13) { animation: hover 1s linear infinite 1.5s; }
.loader-container p:nth-child(14) { animation: hover 1s linear infinite 1.625s; }
.loader-container p:nth-child(15) { animation: hover 1s linear infinite 1.75s; }

@keyframes hover {
  0% {
    transform: scale(0.5);
    color: #121212;
    -webkit-text-stroke: 2px rgb(0, 0, 0);
  }
  20% {
    transform: scale(1);
    color: #ed751f;
    -webkit-text-stroke: 2px #ed751f;
  }
  50% {
    transform: scale(0.5);
    color: #fff;
    -webkit-text-stroke: 2px white;
  }
}



/* Hero Section */
.faqs-hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 100px 20px 60px;
  text-align: center;
  border-bottom: 2px solid #ed751f;
}

.hero-content h1 {
  font-size: 48px;
  color: #ed751f;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content h1 i {
  margin-right: 15px;
}

.hero-content > p {
  font-size: 20px;
  color: #dcdcdc;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Search Box */
.search-box {
  max-width: 600px;
  margin: 30px auto 0;
  position: relative;
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ed751f;
  font-size: 20px;
}

.search-box input {
  width: 100%;
  padding: 15px 20px 15px 55px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 50px;
  color: #ffffff;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #ed751f;
  box-shadow: 0 0 10px rgba(237, 117, 31, 0.3);
}

.search-box input::placeholder {
  color: #888;
}

/* FAQ Container */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Category Buttons */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: center;
}

.category-btn {
  padding: 12px 24px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 25px;
  color: #dcdcdc;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.category-btn:hover {
  border-color: #ed751f;
  color: #ed751f;
  transform: translateY(-2px);
}

.category-btn.active {
  background: #ed751f;
  border-color: #ed751f;
  color: #ffffff;
}

/* FAQ Sections */
.faq-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-section {
  background: #0a0a0a;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ed751f;
}

.section-header i {
  font-size: 32px;
  color: #ed751f;
  margin-right: 15px;
}

.section-header h2 {
  font-size: 28px;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

/* FAQ Items */
.faq-item {
  margin-bottom: 20px;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #ed751f;
}

.faq-item.active {
  border-color: #ed751f;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #2a2a2a;
}

.faq-question h3 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-question i {
  color: #ed751f;
  font-size: 16px;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: #dcdcdc;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
}

.faq-answer mark {
  background: #ed751f;
  color: #ffffff;
  padding: 2px 4px;
  border-radius: 3px;
}

/* No Results Message */
.no-results-message {
  text-align: center;
  padding: 60px 20px;
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid #333;
}

.no-results-message i {
  font-size: 48px;
  color: #ed751f;
  margin-bottom: 20px;
}

.no-results-message h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.no-results-message p {
  color: #dcdcdc;
  font-size: 16px;
}

/* CTA Section */
.faq-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 12px;
  margin-top: 60px;
  border: 2px solid #ed751f;
}

.faq-cta h3 {
  font-size: 32px;
  color: #ed751f;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-cta p {
  font-size: 18px;
  color: #dcdcdc;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ed751f;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #ff8c42;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(237, 117, 31, 0.4);
}

/* Footer */
.footer {
  padding: 30px 10px 0px 10px;
  z-index: 999;
  color: #2f2f2f;
  background-color: #202020;
  border-top: 1px solid #000000;
  width: 100%;
  margin: 0;
}

.footer_nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.nav_con {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.nav_con img {
  width: 180px;
  cursor: pointer;
}

.nav_con h2 {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 400;
  color: white;
}

.nav_ul.extra {
  column-count: 2;
  column-gap: 40px;
}

.nav_item {
  margin-top: 20px;
}

.nav_item h2 {
  font-weight: 400;
  font-size: 26px;
  color: white;
}

.nav_con a {
  color: #e3ab23;
  margin: 5px 0;
}

.footer p {
  margin: 10px 0;
  font-style: normal;
  color: #dcdcdc;
}

.footer .nav_item a {
  margin: 10px 0;
  color: #efefef;
}

.footer .nav_item a:hover {
  color: #ed751f;
}

.footer ul {
  margin-top: 30px;
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 32px;
}

.footer a {
  text-decoration: none;
}

.footer .legal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
  padding: 10px 30px;
}

.footer .legal p {
  color: #eeeeee;
}

.footer .legal .links {
  display: flex;
  flex-direction: row;
}

.footer .legal .links a {
  font-size: 22px;
  background-color: #000000;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 2px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

.footer .legal .links a:hover {
  background-color: #ed751f;
  transition: background-color 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
 
  .faqs-hero {
    padding: 80px 20px 40px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .faq-container {
    padding: 40px 15px;
  }

  .faq-section {
    padding: 25px 20px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .category-btn {
    padding: 10px 18px;
    font-size: 12px;
  }

  .faq-cta h3 {
    font-size: 24px;
  }

  .faq-cta p {
    font-size: 16px;
  }

  .footer_nav {
    flex-flow: column;
  }

  .nav_con {
    width: 100%;
  }

  .nav_ul.extra {
    column-count: 1;
  }

  .footer .legal {
    flex-direction: column-reverse;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .search-box input {
    padding: 12px 15px 12px 50px;
    font-size: 14px;
  }

  .faq-section {
    padding: 20px 15px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-answer p {
    padding: 0 15px 15px;
  }
}
