/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --bg: #0d0f14;
  --bg-alt: #111318;
  --card: #161920;
  --border: #2a2d36;
  --text: #ccc;
  --muted: #888;
  --heading: #fff;
  --logo-color: #fff;
  --nav-bg: rgba(13, 15, 20, 0.92);
  --pro-accent: #f3bd00;
  --accent: #f3bd00;
  --green: #f3bd00;
--ed-primary-color: #f3bd00;
  --transition: 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

html.light-mode {
  --bg: #fff;
  --bg-alt: #f8f9fa;
  --card: #fff;
  --border: #e9ecef;
  --text: #1c1c1e;
  --muted: #6c757d;
  --heading: #0d0f14;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --logo-color: #0d0f14;
}


ul{
margin: 0 !important;
margin-bottom: 0 !important;
}

/* ============================================
   RESET
   ============================================ */
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: var(--accent);
  color: #000;
}

/* ============================================
   LOGO TOGGLE (light / dark)
   ============================================ */
.logo-white {
  display: block;
}
.logo-dark {
  display: none;
}
html.light-mode .logo-white {
  display: none;
}
html.light-mode .logo-dark {
  display: block;
}

/* ============================================
   NAV — BASE
   ============================================ */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1200;
  width: 100%;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 1rem 3rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.logo img {
  width: 220px;
  height: auto;
}

/* ============================================
   NAV LINKS (desktop)
   ============================================ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto !important;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--pro-accent);
}

/* ============================================
   DROPDOWN — DESKTOP
   ============================================ */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropbtn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 350px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2000;
}

/* Arrow pointer */
.nav-dropdown-content::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}

.nav-dropdown-content a {
  padding: 0.85rem 1.25rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1c1c1e;
  display: block;
  transition: color 0.25s;
  text-decoration: none;
  border-radius: 8px;
}
.nav-dropdown-content a:hover {
  color: var(--pro-accent);
  background: rgba(243, 189, 0, 0.06);
}

/* ============================================
   NEW BADGE
   ============================================ */
.nav-new-badge {
  display: inline-block;
  margin-left: 7px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 16px;
  color: #000;
  background: #f3bd00;
  border-radius: 20px;
  vertical-align: middle;
  text-transform: uppercase;
  animation: nav-badge-pulse 2s ease-in-out infinite;
}

@keyframes nav-badge-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.08);
  }
}

/* Tools dot indicator */
.nav-tools-dot::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #f3bd00;
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
  animation: nav-badge-pulse 2s ease-in-out infinite;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.btn-primary {
  color: #1c1c1e;
  background: var(--green);
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(243, 189, 0, 0.3);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.5s;
  pointer-events: none;
}
.btn-primary:hover::after {
  left: 130%;
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(243, 189, 0, 0.4);
}

/* ============================================
   HAMBURGER TOGGLE
   ============================================ */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: 1rem;
  cursor: pointer;
  z-index: 210;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover span {
  background: var(--pro-accent);
}

.menu-toggle.active span:first-child {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   FULL-SCREEN MOBILE MENU
   ============================================ */
.fs-menu {
  position: fixed;
  top: 110px; /* adjust to match your nav height */
  left: 0;
  width: 100%;
  height: calc(100vh - 73px);
  background: var(--nav-bg);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 2rem 3rem;
  overflow-y: auto;
}

.fs-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fs-menu-close {
  display: none; /* hidden — closing handled by hamburger toggle */
}

.fs-menu-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  gap: 2.5rem;
  text-align: left;
}

.fs-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Full-screen links */
.fs-link {
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
  transition: color 0.3s;
}
.fs-link:hover {
  color: var(--pro-accent);
}

/* Full-screen accordion dropdowns */
.fs-dropdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fs-dropdown-btn {
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 0;
}
.fs-dropdown-btn:hover {
  color: var(--pro-accent);
}

.fs-dropdown .chevron {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}
.fs-dropdown.active .chevron {
  transform: rotate(180deg);
}

.fs-dropdown-content {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fs-dropdown.active .fs-dropdown-content {
  max-height: 600px;
}

.fs-dropdown-content a {
  font-size: 1.2rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.fs-dropdown-content a:hover {
  color: var(--pro-accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Hide hamburger & fs-menu on desktop */
@media (min-width: 1025px) {
  .menu-toggle {
    display: none !important;
  }
  .fs-menu {
    display: none !important;
  }
}

/* Hide desktop nav links on mobile/tablet */
@media (max-width: 1024px) {
  .nav-links {
    display: none !important;
  }
}

/* Hide CTA on small mobile */
@media (max-width: 640px) {
  .nav-cta {
    display: none !important;
  }
  nav {
    padding: 1.2rem 1.5rem;
  }
  .fs-menu {
    padding: 2rem 1.5rem;
  }
}