* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  border-bottom: 1px solid #d4a436;
  z-index: 1000;
}
.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffcc33;
  font-weight: 700;
}
.logo img {
  height: 28px;
}
.navbar nav a {
  margin-left: 22px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.navbar nav a:hover {
  color: #ffcc33;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  background: radial-gradient(circle at right, #3a2b00, #000);
}
.hero-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: 64px;
  color: #ffcc33;
}
.hero-text h2 {
  font-size: 24px;
  margin: 6px 0 14px;
}
.hero-text p {
  color: #ccc;
  max-width: 520px;
}
.hero-tags {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-tags span {
  padding: 8px 14px;
  border: 1px solid #ffcc33;
  border-radius: 20px;
  color: #ffcc33;
  font-size: 13px;
}
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-images img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d4a436;
}

/* DIVIDER */
.divider {
  width: 140px;
  height: 2px;
  margin: 80px auto;
  background: linear-gradient(90deg, transparent, #ffcc33, transparent);
}

/* FUTURE */
.future {
  padding: 100px 24px;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.future-text h2 {
  color: #ffcc33;
  font-size: 34px;
  margin-bottom: 14px;
}
.future-text p {
  color: #ccc;
  margin-bottom: 18px;
}
.future-text ul {
  list-style: none;
}
.future-text li {
  margin-bottom: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(212,164,54,0.4);
  border-radius: 18px;
  width: fit-content;
}
.future-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.future-images img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d4a436;
}

/* SECTIONS */
.section-title {
  text-align: center;
  color: #ffcc33;
  font-size: 36px;
  margin-bottom: 50px;
}

.services {
  padding: 100px 24px;
}
.service-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-box {
  padding: 28px;
  border: 1px solid #d4a436;
  border-radius: 18px;
  background: linear-gradient(180deg, #000, #0c0c0c);
  transition: .3s;
}
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(255,204,51,.25);
}
.service-box h3 {
  color: #ffcc33;
  margin-bottom: 8px;
}
.service-box p {
  color: #ccc;
  font-size: 14px;
}

@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* STATS */
.stats {
  padding: 100px 24px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stats .section-title {
  grid-column: 1 / -1;
  margin-bottom: 40px;
}
.stat span {
  font-size: 56px;
  color: #ffcc33;
  font-weight: 700;
}
.stat p {
  color: #ccc;
  margin-top: 6px;
}

/* ABOUT */
.about {
  padding: 100px 24px;
}
.about-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.about-box {
  padding: 32px;
  border: 1px solid #d4a436;
  border-radius: 18px;
}

/* FOOTER */
footer {
  margin-top: 80px;
  padding: 60px 24px 20px;
  border-top: 1px solid #d4a436;
}
.footer-left {
  max-width: 1200px;
  margin: auto;
  color: #ccc;
}
.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}
.follow {
  margin-top: 20px;
}
.follow h4 {
  color: #ffcc33;
  margin-bottom: 8px;
}
.icons a {
  margin-right: 12px;
  color: #ffcc33;
  text-decoration: none;
  font-size: 14px;
}
.footer-right {
  max-width: 1200px;
  margin: 40px auto 0;
  color: #ccc;
}
.footer-right h4 {
  color: #ffcc33;
  margin-bottom: 8px;
}
.footer-right a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 6px;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #999;
  font-size: 14px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-wrap,
  .future,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 44px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
}
footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-left { max-width: 600px; }
.footer-right {
  text-align: right;
}
.icons img {
  width: 28px;
  margin-right: 10px;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
  color: #999;
  font-size: 14px;
}

.follow h4 {
  color: #ffcc33;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ffcc33;
  color: #ffcc33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
}

.icon:hover {
  background: #ffcc33;
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(255,204,51,0.6);
}
.reach {
  padding: 90px 40px;
  text-align: center;
  background: #000;
}

.reach h2 {
  color: #ffcc33;
  font-size: 34px;
  margin-bottom: 60px;
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.reach-box {
  border: 1px solid rgba(255,204,51,0.4);
  border-radius: 18px;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(255,204,51,0.06), rgba(0,0,0,0.6));
  transition: 0.4s;
}

.reach-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255,204,51,0.35);
}

.reach-box .count {
  font-size: 54px;
  font-weight: 800;
  color: #ffcc33;
}

.reach-box .plus {
  font-size: 40px;
  color: #ffcc33;
  margin-left: 4px;
}

.reach-box p {
  margin-top: 12px;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
  .reach-grid {
    grid-template-columns: 1fr;
  }
}
