/* ===== SITE-SHARED: NAVBAR & FOOTER ===== */
/* Shared between landing.html and React SiteLayout */

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height, 86px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  transition: box-shadow 0.2s ease-out;
}

.navbar.navbar-scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  width: 100%;
  max-width: calc(var(--max-width, 1200px) + 220px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.85rem;
  font-weight: 600;
  color: #080808;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.navbar-brand:hover {
  color: #080808;
}

.navbar-brand-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand-icon img,
.navbar-brand-icon svg {
  width: 48px;
  height: 48px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  color: #000;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 8px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #05743F;
}

.navbar-links .navbar-cta,
.navbar-cta {
  padding: 0px 20px !important;
  font-size: 1.15rem;
  height: 48px;
  background: #0D9488 !important;
  color: #FFFFFF !important;
  border-radius: 8px;
  font-weight: 600;
}

.navbar-cta:hover {
  color: #FFFFFF !important;
  opacity: 0.9;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.navbar-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-height, 86px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 16px 24px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.mobile-menu-open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #374151;
  font-weight: 500;
  font-size: 1.05rem;
  min-height: 44px;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: #05743F;
}

/* ===== FOOTER ===== */
.footer {
  background: #F8FAFA;
  color: #6B7280;
  padding: 64px 0 0;
  position: relative;
}

.footer::after {
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  background: linear-gradient(112deg, #0FAB9D, #05743F);
}

.footer__inner {
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer__brand {
  max-width: 380px;
}

.footer__brand h3 {
  color: #0D9488;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.footer__brand p {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.8;
  margin: 0;
}

.footer__company-info {
  margin-top: 20px;
  padding: 14px 16px;
  background: #F1F5F9;
  border-radius: 6px;
  border-left: 3px solid #0D9488;
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.6;
}

.footer__company-info p {
  margin: 0;
}

.footer__nav {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer__nav-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px 0;
}

.footer__nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__nav-col a,
.footer__nav-col button {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.footer__nav-col a:hover,
.footer__nav-col button:hover {
  color: #059669;
}

.footer__bottom {
  margin: 0 auto;
  padding: 0 80px 40px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: #9CA3AF;
  margin: 0;
}

.footer__cookies {
  margin-top: 4px;
}

.footer__cookies a {
  font-size: 0.8rem;
  color: #9CA3AF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__cookies a:hover {
  color: #059669;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .footer__inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 32px;
  }

  .footer__nav {
    gap: 32px;
  }

  .footer__bottom {
    padding: 0 24px 32px;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}
