     

    /* FAQ HERO SECTION */
.faq-hero {
  position: relative;
  min-height: 90vh;
  background: 
    linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
    url('../../assets/images/about-us.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  color: #fff;
  overflow: hidden;
}

/* GOLD MOVING OVERLAY */
.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,204,0,0.08),
    rgba(255,215,0,0.02),
    rgba(255,204,0,0.08)
  );
  animation: goldFlow 18s linear infinite;
  z-index: 1;
}

@keyframes goldFlow {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(50%) rotate(360deg); }
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TAG */
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,204,0,0.15);
  color: #ffd700;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* TITLE */
.hero-content h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

@keyframes goldShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* TEXT */
.hero-content p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* BUTTON */
.btn-primary {
  padding: 14px 34px;
  border-radius: 40px;
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255,204,0,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 38px;
  }
  .btn-primary {
    padding: 12px 28px;
  }
}
/* FAQ Section */
.faq-list {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 8%;
  font-family: 'Arial', sans-serif;
}

/* Header */
.faq-header h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #ffd700;
}

.faq-header p {
  text-align: center;
  color: #ccc;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Cards */
.faq-cards {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  background: #111;
  border-left: 4px solid #ffd700;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

/* FAQ Button */
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.faq-icon {
  font-size: 24px;
  color: #ffd700;
  transition: transform 0.3s ease;
}

/* Content */
.faq-content {
  display: none;
  padding: 0 25px 20px 25px;
  color: #ccc;
  line-height: 1.6;
  font-size: 16px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Accordion icon rotation */
.faq-card.open .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-btn {
    font-size: 16px;
    padding: 18px 20px;
  }

  .faq-content {
    font-size: 15px;
  }
}
/* BADGE BASE */
.faq-badge {
  display: inline-block;
  margin: 18px 25px 0;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  width: fit-content;
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
}

/* CATEGORY VARIANTS (optional subtle tint) */
.faq-badge.travel {
  background: linear-gradient(90deg, rgba(255,215,0,0.2), rgba(255,215,0,0.05));
}

.faq-badge.tours {
  background: linear-gradient(90deg, rgba(255,204,0,0.25), rgba(255,204,0,0.06));
}

.faq-badge.medical {
  background: linear-gradient(90deg, rgba(255,230,150,0.25), rgba(255,230,150,0.06));
}

/* Hover polish */
.faq-card:hover .faq-badge {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}