:root {
  --gold: #d4af37;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --dark-overlay: rgba(0, 0, 0, 0.6);
}

/* --- Base Styles --- */
html {
  scroll-behavior: smooth; /* Native smooth scroll fallback */
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  background-color: #0a0514; /* Fallback color */
  min-height: 100vh;
  overflow-x: hidden;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(20, 10, 40, 0.6) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  padding: 25px 0;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(10, 5, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-btn {
  background: var(--gold);
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 5px;
}

/* --- Hero Section --- */
.hero-banner {
  position: relative;
  min-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/hero.jpg") no-repeat center center;
  background-size: cover;
  padding-top: 80px; /* Accounts for fixed nav */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Hero Typography */
.hero-text-wrapper {
  animation: fadeUp 1.2s ease-out forwards;
}

.hero-badge {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.9rem;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}

.hero-text-wrapper h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 20px 0;
  font-weight: 700;
  text-transform: uppercase;
}

.gold-text {
  color: var(--gold);
}

.hero-text-wrapper p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Hero Buttons */
.hero-btns {
  display: flex;
  gap: 20px;
}

.btn-gold,
.btn-outline {
  padding: 16px 32px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  border: 2px solid var(--gold);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-gold:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}
.btn-outline:hover {
  background: white;
  color: #111;
  transform: translateY(-3px);
}

/* --- Form Card --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.glass-card h3 {
  margin-top: 0;
  color: var(--gold);
}

input,
select {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  color: white;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: inherit;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.6);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(to right, #d4af37, #f3d576); /* Gold gradient */
  color: #000;
  border: none;
  padding: 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: transform 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Checkbox */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.checkbox-container input {
  width: auto;
  margin-top: 3px;
}

/* --- Common Section Styles --- */
.section-padding {
  padding: 100px 0;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
}

/* --- About & Stats Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.check-list i {
  color: #70d8ff;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
}
.stat-box h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin: 0 0 10px 0;
}
.stat-box p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- Strategies Section (NEW) --- */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.strategy-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid var(--glass-border);
  padding: 40px 30px;
  border-radius: 8px;
  transition:
    transform 0.3s,
    border-color 0.3s;
  text-align: left;
}

.strategy-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 25px;
}

.strategy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.strategy-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.strategy-features {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.strategy-features li {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 5px;
  font-weight: 600;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}
.wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 15px);
  }
}

/* --- Footer (Updated) --- */
.site-footer {
  padding: 80px 0 40px;
  background: rgba(5, 2, 10, 0.95);
  border-top: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Col 1: Brand */
.footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.6;
  max-width: 400px;
}

/* Col 2 & 3 Titles */
.footer-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

/* Col 2: Links */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links-list a:hover {
  color: var(--gold);
  padding-left: 5px;
}

/* Col 3: Contact */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text-wrapper {
    margin-bottom: 20px;
  }
  .hero-btns {
    justify-content: center;
  }
  .form-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-logo {
    margin: 0 auto 20px;
    display: block;
  }
  .footer-disclaimer {
    margin: 0 auto;
  }
  .contact-item {
    justify-content: center;
  }

  .nav-links {
    display: none;
  } /* Hide nav links on mobile (would need burger menu) */
}
