/* Header Inner */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo Styles */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsl(142 55% 32%) 0%, hsl(130 60% 45%) 100%);
  box-shadow: 0 20px 60px -20px hsl(42 95% 55% / 0.45);
}

.site-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.site-logo .custom-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: 160px;
  object-fit: contain;
}

.logo-letter {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
}

.logo-text {
  line-height: 1.2;
}

.logo-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0;
}

.logo-subtitle {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* Navigation */
.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.nav-menu a:hover {
  background-color: hsl(var(--secondary));
  color: hsl(var(--primary));
}

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--accent-foreground));
  background: linear-gradient(135deg, hsl(var(--accent-glow)) 0%, hsl(var(--accent-dark)) 100%);
  border-radius: 9999px;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-hero i {
  width: 1rem;
  height: 1rem;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 70px -20px hsl(42 95% 55% / 0.6);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .main-nav {
    display: flex !important;
  }

  .header-cta {
    display: flex !important;
  }

  .mobile-menu-toggle {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }
}

.nav-menu a:hover {
  background-color: hsl(var(--secondary));
  color: hsl(var(--primary));
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 70px -20px hsl(42 95% 55% / 0.6);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Mobile Menu Container */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  box-shadow: 0 10px 30px -10px hsl(142 30% 20% / 0.15);
  z-index: 40;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out;
}

.mobile-menu.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-container {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

/* Mobile Menu List */
.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  margin: 0;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.mobile-nav-menu li:last-child {
  border-bottom: none;
}

.mobile-nav-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition: all 0.2s ease;
  position: relative;
  padding-left: 1rem;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:active {
  color: hsl(var(--primary));
  background-color: hsl(var(--secondary) / 0.5);
  padding-left: 1.5rem;
}

.mobile-nav-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: width 0.2s ease;
}

.mobile-nav-menu a:hover::before {
  width: 0.5rem;
}

/* Mobile CTA Button */
.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--accent-foreground));
  background: linear-gradient(135deg, hsl(var(--accent-glow)) 0%, hsl(var(--accent-dark)) 100%);
  border-radius: 9999px;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-cta-btn:hover,
.mobile-cta-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px hsl(42 95% 55% / 0.6);
}

.mobile-cta-btn svg {
  width: 1rem;
  height: 1rem;
}