/* Header & Footer Styles */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

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

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFB800;
  text-decoration: none;
}

.mobile-toggle {
  background: none;
  border: none;
  color: #FFB800;
  font-size: 2rem;
  cursor: pointer;
  display: block;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: #e8edf5;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: rgba(255, 184, 0, 0.1);
  color: #FFB800;
}

.cta-btn {
  background: #FFB800 !important;
  color: #000 !important;
  padding: 0.7rem 1.2rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
}

.main-footer {
  background: #1a1f3a;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  color: #a8b3c1;
}

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

.footer-col h3, .footer-col h4 {
  color: #FFB800;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #a8b3c1;
  text-decoration: none;
}

.footer-col a:hover {
  color: #FFB800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 184, 0, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

body {
  padding-top: 80px;
}

@media (min-width: 769px) {
  .mobile-toggle {
    display: none !important;
  }
  
  .main-nav {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255, 184, 0, 0.2);
  }
  
  .main-nav.active {
    display: flex !important;
  }
  
  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
  }
}