/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ffd700;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffd700;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%
    );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.hero-container {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-content {
  padding-left: 10px;
  padding-right: 10px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  }
  to {
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.hero-quote {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2rem;
  border: 2px solid #ffd700;
  border-radius: 15px;
  background: rgba(255, 215, 0, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
}

.hero-quote::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
  border-radius: 15px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.hero-quote blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000000;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
}

.cta-button.large {
  padding: 1.5rem 3rem;
  font-size: 1.4rem;
}

/* Section Titles */
.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Why Section */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid #ffd700;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffd700;
}

/* Income Plan Table */
.income-section {
  padding: 5rem 0;
  background: #000000;
}

.table-container {
  overflow-x: auto;
  border-radius: 15px;
  border: 2px solid #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

.income-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.income-table th {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  padding: 1.5rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #ffd700;
}

.income-table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.income-table tr:hover {
  background: rgba(255, 215, 0, 0.1);
}

.tier-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

/* Referral Flow */
.referral-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.referral-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.flow-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.flow-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.flow-step h3 {
  color: #ffd700;
  font-weight: 600;
}

.flow-arrow {
  font-size: 2rem;
  color: #ffd700;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Rewards Section */
.rewards-section {
  padding: 5rem 0;
  background: #000000;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.reward-card {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reward-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reward-card:hover::before {
  opacity: 1;
}

.reward-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.reward-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 13px 13px 0 0;
  position: relative;
}

.reward-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.reward-card:hover .reward-image img {
  transform: scale(1.1);
}

.reward-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reward-card:hover .reward-overlay {
  opacity: 1;
}

.reward-badge {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}

.reward-card:hover .reward-badge {
  transform: translateY(0);
}

.reward-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 165, 0, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reward-card:hover .reward-image::after {
  opacity: 1;
}

.reward-header {
  padding: 1.5rem 1.5rem 1rem;
}

.reward-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.reward-target {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.reward-prize {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffa500;
  padding: 0 1.5rem 1.5rem;
}

/* Founder Section */
.founder-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.founder-message {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: float 4s ease-in-out infinite;
}

.founder-message blockquote {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 2rem;
  font-style: italic;
}

.founder-signature {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Getting Started */
.getting-started {
  padding: 5rem 0;
  background: #000000;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid #ffd700;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.step-card h3 {
  color: #ffd700;
  font-weight: 600;
}

.final-cta {
  text-align: center;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  border-top: 2px solid #ffd700;
  padding: 3rem 0;
}

.footer-content {
  text-align: center;
}

.footer-slogan {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  /* About Section Mobile */
  .about-section {
    padding: 3rem 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }

  .about-text {
    text-align: center;
    order: 2;
  }

  .about-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  .about-features {
    gap: 1.5rem;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .about-feature:hover {
    transform: translateY(-5px);
  }

  .about-feature .feature-icon {
    font-size: 2.5rem;
  }

  .feature-content h3 {
    font-size: 1.2rem;
  }

  .feature-content p {
    font-size: 0.95rem;
    text-align: left;
  }

  .about-image {
    order: 1;
    margin-bottom: 2rem;
    width: 100%;
  }

  .about-image img {
    height: 250px;
    width: 100%;
  }

  /* Services Section Mobile */
  .services-section {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }

  .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .service-features {
    text-align: center;
  }

  .service-features li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .service-features li:hover {
    transform: none;
  }

  /* Mobile Navigation */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ffd700;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu .nav-link {
    margin: 1rem 0;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .nav-menu .nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .referral-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-quote blockquote {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .income-table th,
  .income-table td {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }

  /* About Section Small Mobile */
  .about-section {
    padding: 2rem 0;
  }

  .about-content {
    gap: 1.5rem;
  }

  .about-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .about-feature {
    padding: 1rem;
    gap: 0.8rem;
  }

  .about-feature .feature-icon {
    font-size: 2rem;
  }

  .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-content p {
    font-size: 0.9rem;
  }

  .about-image {
    margin-bottom: 1.5rem;
  }

  .about-image img {
    height: 200px;
  }

  /* Services Section Small Mobile */
  .services-section {
    padding: 2rem 0;
  }

  .service-card {
    padding: 1.2rem;
    margin: 0 0.3rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-features li {
    font-size: 0.85rem;
  }
}

/* About Us Section */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 4rem;
  align-items: center;
}

@media screen and (min-width: 667px) {
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-text {
  text-align: left;
}

.about-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateX(10px);
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
}

.about-feature .feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-content h3 {
  color: #ffd700;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #ffffff;
  opacity: 0.8;
  line-height: 1.6;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 165, 0, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover::before {
  opacity: 1;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: #000000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid #ffd700;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.service-features li:hover {
  color: #ffd700;
  opacity: 1;
  transform: translateX(5px);
}
