/* ==== GENERAL RESET ==== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: #181714;
  color: #fffbe7;
  font-size: 17px;
  min-height: 100vh;
  scroll-behavior: smooth;
}
a { color: #ffd700; text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff56a; }

/* ==== MARQUEE ==== */
.marquee-container {
  width: 100vw;
  background: #181714;
  padding: 6px 0 2px 0;
  color: #FFD700;
  overflow-x: hidden;
  font-size: 1.09em;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #252310;
}
.marquee-text {
  animation: marquee-move 26s linear infinite;
  white-space: nowrap;
  font-weight: 500;
}
@keyframes marquee-move {
  0% { transform: translateX(8vw);}
  100% { transform: translateX(-68vw);}
}

/* ==== NAVIGATION ==== */
.gold-header {
  background: #11100e;
  width: 100vw;
  border-bottom: 1px solid #272412;
  z-index: 100;
  position: sticky;
  top: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 3vw;
}
.nav-logo img {
  height: 52px;
  filter: drop-shadow(0 0 7px #FFD70022);
}
.nav-menu {
  display: flex;
  gap: 14px;
}
.nav-link {
  font-weight: bold;
  color: #FFD700;
  padding: 0 14px;
  font-size: 1.16em;
  letter-spacing: 0.3px;
  transition: color 0.18s;
}
.nav-link.active,
.nav-link:hover { color: #fff; }
.nav-btns {
  display: flex;
  gap: 12px;
}
.gold-btn {
  background: #FFD700;
  color: #181714;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  padding: 10px 28px;
  font-size: 1.07em;
  box-shadow: 0 2px 12px #0005;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  outline: none;
  text-align: center;
}
.gold-btn:hover {
  background: #222;
  color: #FFD700;
  border: 2px solid #FFD700;
}

/* ==== IMAGE BANNER SLIDER ==== */
.image-slider {
  width: 100vw;
  height: 340px;
  overflow: hidden;
  position: relative;
  background: #1c1a17;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-img {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s;
}
.slider-img.active {
  opacity: 1;
  z-index: 2;
  transition: opacity 1.4s;
}

/* ==== HERO SECTION ==== */
.hero-section {
  padding: 34px 0 0 0;
  background: transparent;
  text-align: center;
}
.hero-section h1 {
  color: #FFD700;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 0 2px 7px #0007;
}
.hero-content p {
  color: #fffbe7;
  font-size: 1.18rem;
  max-width: 680px;
  margin: 18px auto 0 auto;
  line-height: 1.48;
}
.banner-slider {
  margin-bottom: 15px;
  min-height: 28px;
}
.banner-slider .slide {
  display: none;
  font-weight: bold;
  color: #FFD700;
  font-size: 1.21rem;
  transition: opacity 0.7s;
  letter-spacing: 0.2px;
}
.banner-slider .slide.active { display: block; }

/* ==== FEATURES ==== */
.features-section {
  padding: 44px 0 10px 0;
  background: #181714;
  color: #fffbe7;
}
.features-grid {
  display: flex;
  gap: 38px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.feature-card {
  background: #23200e;
  border-radius: 16px;
  box-shadow: 0 2px 14px #0003;
  padding: 26px 22px 22px 22px;
  text-align: center;
  width: 255px;
  max-width: 98vw;
  transition: transform 0.15s;
}
.feature-card:hover { transform: translateY(-6px) scale(1.03);}
.feature-card img { height: 55px; margin-bottom: 10px;}
.feature-card h3 { color: #FFD700; font-size: 1.14rem; margin-bottom: 7px;}
.feature-card p { font-size: 1.01rem; color: #fffbe7; }

/* ==== HOW IT WORKS ==== */
.how-it-works-section {
  padding: 44px 0 18px 0;
  background: #1a1915;
  color: #fffbe7;
  text-align: center;
}
.how-it-works-section h2 { color: #FFD700; margin-bottom: 18px; font-size: 1.4em;}
.steps-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.step {
  background: #222016;
  border-radius: 14px;
  padding: 19px 18px 16px 18px;
  min-width: 160px;
  max-width: 230px;
  text-align: center;
  box-shadow: 0 1px 8px #0003;
  margin: 0 4px;
}
.step-number {
  display: inline-block;
  width: 32px; height: 32px;
  background: #FFD700;
  color: #181714;
  font-weight: bold;
  border-radius: 50%;
  line-height: 32px;
  font-size: 1.13em;
  margin-bottom: 5px;
}

/* ==== BLOGS ==== */
.blog-section {
  background: #181714;
  color: #fffbe7;
  padding: 44px 0 16px 0;
  text-align: center;
}
.blog-section h2 {
  color: #FFD700;
  font-size: 1.27rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.blog-card-container {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #23200e;
  border-radius: 13px;
  box-shadow: 0 1px 9px #0003;
  width: 275px;
  max-width: 98vw;
  padding: 16px;
  transition: transform 0.12s;
  align-items: center;
  text-align: left;
  color: #fffbe7;
}
.blog-card:hover { transform: translateY(-6px) scale(1.03);}
.blog-card img { height: 48px; width: 48px; margin-bottom: 11px;}
.blog-card h3 { font-size: 1.11rem; color: #FFD700; margin-bottom: 5px;}
.blog-card p { font-size: 0.97rem; color: #fffbe7; }
.blog-read-more { color: #FFD700; font-size: 0.98em; font-weight: 500; }

/* ==== FAQ ==== */
.faq-section {
  background: #181714;
  color: #fffbe7;
  padding: 44px 0 14px 0;
  text-align: center;
}
.faq-section h2 { color: #FFD700; margin-bottom: 22px;}
.faq-list { max-width: 660px; margin: 0 auto; }
.faq-item {
  margin-bottom: 11px;
  text-align: left;
  border-radius: 10px;
  background: #222016;
  box-shadow: 0 1px 8px #0003;
}
.faq-question {
  width: 100%;
  padding: 12px 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.08em;
  color: #FFD700;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  border-radius: 10px 10px 0 0;
  transition: background 0.17s;
}
.faq-question.active,
.faq-question:hover { background: #FFD70015; }
.faq-answer {
  display: none;
  padding: 0 18px 10px 18px;
  color: #fffbe7;
  font-size: 1em;
}

/* ==== CONTACT ==== */
.contact-section {
  background: #181714;
  color: #fffbe7;
  padding: 42px 0 18px 0;
  text-align: center;
}
.contact-section h2 { color: #FFD700; margin-bottom: 15px; }
.contact-section .gold-btn { margin-bottom: 10px; }

/* ==== FOOTER ==== */
.site-footer {
  background: #11100e;
  color: #fffbe7;
  text-align: center;
  padding: 15px 0 7px 0;
  border-top: 1px solid #272412;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-links {
  color: #FFD700;
  font-size: 1.07em;
  margin-bottom: 9px;
}
.footer-links a { color: #FFD700; margin: 0 4px; }
.footer-links a:hover { color: #fff; }
.footer-social {
  margin-bottom: 7px;
}
.footer-social img { vertical-align: middle; }

/* ==== FLOATING WHATSAPP BUTTON ==== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9999;
  background: radial-gradient(#222 70%, #FFD700 100%);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 4px 16px #0007;
  transition: box-shadow 0.18s, transform 0.18s;
}
.wa-float img { width: 48px; }

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1100px) {
  .nav-inner { max-width: 100vw; }
  .features-grid, .blog-card-container, .steps-grid { gap: 20px; }
}

@media (max-width: 900px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 4vw;
  }
  .nav-logo img { height: 40px; }
  .nav-menu { flex-wrap: wrap; margin-bottom: 10px; }
  .nav-menu .nav-link { padding: 0 9px; font-size: 1.05rem; }
  .nav-btns { margin: 7px 0 0 0; }
  .gold-btn { font-size: 1.05rem; padding: 7px 18px; }
}

@media (max-width: 700px) {
  body { font-size: 15px; }
  .marquee-text { font-size: 0.98em; }
  .hero-section, .about-section, .blog-section, .contact-section, .faq-section, .features-section {
    padding: 18px 0;
  }
  .hero-section h1 {
    font-size: 1.48rem;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 10px;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 18px;
    text-align: center;
  }
  .banner-slider .slide { font-size: 1rem; padding: 5px 0; }
  .gold-btn.hero-btn { width: 90%; margin: 8px auto 0; display: block; }
  .image-slider {
    height: 36vw; min-height: 148px; max-height: 215px;
    margin-bottom: 6px;
  }
  .slider-img {
    width: 100vw !important; max-width: 100vw; height: 100% !important;
    object-fit: cover; border-radius: 0;
  }
  .features-grid, .blog-card-container, .steps-grid {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch;
  }
  .feature-card, .blog-card, .step {
    width: 98%;
    margin: 0 auto !important;
  }
  .faq-question { font-size: 1.02rem; }
  .footer-links { font-size: 1rem; }
  .site-footer { padding: 12px 0 6px 0; }
}

@media (max-width: 500px) {
  html { font-size: 15px; }
  .nav-logo img { height: 36px; }
  .nav-inner { padding: 10px 2vw; }
  .gold-header { padding: 0; }
  .marquee-text { font-size: 0.95em; padding: 2px 0; }
  .image-slider { height: 40vw; min-height: 106px; max-height: 170px; }
  .slider-img { border-radius: 0 !important; }
  .hero-section, .about-section, .blog-section, .contact-section { padding: 12px 0; }
  .hero-section h1 { font-size: 1.04rem; }
  .footer-links { font-size: 0.95rem; }
  .wa-float { bottom: 18px; right: 8px; width: 42px; }
}

@media (max-width: 400px) {
  .nav-logo img { height: 28px; }
  .gold-btn, .nav-btns .gold-btn { font-size: 0.95rem; padding: 6px 10px; }
  .wa-float img { width: 38px; }
}
