* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(120deg, #0b0b0b, #111, #0b0b0b);
  background-size: 400% 400%;
  animation: bgMove 20s infinite;
  color: #fff;
}

@keyframes bgMove {
  0% {background-position:0% 50%}
  50% {background-position:100% 50%}
  100% {background-position:0% 50%}
}

/* HAMBURGER */
.menu-btn {
  position: fixed;
  top: 25px;
  left: 25px;
  width: 34px;
  z-index: 1000;
}
.menu-btn span {
  display: block;
  height: 3px;
  background: #ff7a00;
  margin: 6px 0;
  border-radius: 5px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 90px 20px;
}
.hero-logo {
  width: 90px;
  border-radius: 14px;
  margin-bottom: 15px;
  cursor: pointer;
}
.hero h1 { font-size: 3rem; }
.hero p { color: #ff7a00; }

/* BANNER */
.banner-section img {
  width: 90%;
  display: block;
  margin: auto;
  border-radius: 20px;
}

/* SECTION */
.section {
  padding: 80px 20px;
  text-align: center;
}

/* REVIEWS */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 25px;
  margin-top: 40px;
}
.review-card {
  background: #0f0f0f;
  padding: 30px;
  border-radius: 18px;
  transition: 0.4s;
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255,122,0,0.25);
}
.review-card span {
  display: block;
  margin-top: 15px;
  color: #ff7a00;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 80px 20px;
}
.stat-box {
  text-align: center;
}
.stat-box h3 {
  font-size: 3rem;
  color: #ff7a00;
}
.stat-box p {
  opacity: 0.7;
}

/* LIVE CHAT */
.live-chat {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #111;
  padding: 12px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,122,0,0.4);
}
.dot {
  width: 10px;
  height: 10px;
  background: #00ff7f;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

/* FOOTER */
.footer {
  padding: 50px;
  text-align: center;
  background: #0a0a0a;
}
.footer img { width: 60px; margin-bottom: 15px; }

/* MOUSE GLOW */
.cursor-glow {
  position: fixed;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255,122,0,0.2), transparent 65%);
  pointer-events: none;
  transform: translate(-50%,-50%);
}
.faq-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-box details {
  background: #0f0f0f;
  padding: 20px 25px;
  border-radius: 14px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.faq-box details[open] {
  box-shadow: 0 0 20px rgba(255,122,0,0.25);
}

.faq-box summary {
  cursor: pointer;
  font-weight: 600;
  color: #ff7a00;
}

.faq-box p {
  margin-top: 10px;
  opacity: 0.85;
  line-height: 1.6;
}
