.site-header {
 position: relative;
  top: 0;
  z-index: 1000;
  padding: 0;
    border-bottom: 1px solid #ffffff12;
}
.site-container.hr {
    position: relative;
}

.site-header .site-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  position: relative;
  z-index: 999;
}
.sub-main-hero {
    max-width: 715px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

/* Brand */
.site-brand {
  display: flex;
  align-items: center;
  z-index: 1001; /* Above mobile menu */
}

.site-brand img {
    max-height: 60px;
    width: auto;
    height: 100%;
}

.site-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

/* Navigation */
.site-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.site-nav .site-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s ease;
    position: relative;
    padding-bottom: 10px;
    width: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
  color: #FECD04;
}

/* Active Indicator */
.site-nav .current-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fecd04; /* Gold accent */
}

/* CTA Button */
.site-cta {
     background-color: #ffffff;
    color: #000000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 1001;
    max-width: 121px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
}

.site-cta:hover {
  transform: translateY(-2px);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  position: relative;
}

.menu-toggle .bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

/* Hamburger to Cross Animation */
.menu-toggle.is-active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }
  
  .site-cta {
    display: none; /* Hide CTA on mobile or move it inside the menu if desired */
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000; /* Deep black for premium look */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    
    /* Animation: Slide Up + Fade */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 999;
  }

  /* Ensure header stays on top */
  .site-header {
    z-index: 1000;
  }

  .site-nav.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav .site-menu {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
  }

  .site-nav a {
    font-size: 2rem;
    font-weight: 300; /* Lighter font for elegance */
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Stagger animation for links */
  .site-nav.is-active a {
    opacity: 1;
    transform: translateY(0);
  }
  
  .site-nav.is-active li:nth-child(1) a { transition-delay: 0.1s; }
  .site-nav.is-active li:nth-child(2) a { transition-delay: 0.2s; }
  .site-nav.is-active li:nth-child(3) a { transition-delay: 0.3s; }
  .site-nav.is-active li:nth-child(4) a { transition-delay: 0.4s; }
  .site-nav.is-active li:nth-child(5) a { transition-delay: 0.5s; }
}

