.footer {
  background: var(--text-primary);
  padding: 24px 80px 48px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 48px;
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 7.046px;
}

.footer-logo-icon {
   width: 132.14px;
  height: 53px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: -17.12px;
}

.footer-logo-primary,
.footer-logo-secondary {
  font-family: var(--font-baloo);
  font-size: 22.02px;
  font-weight: 400;
  line-height: 34.659px;
  color: var(--text-light);
}

.footer-logo-primary {
  width: 73px;
  height: 35px;
}

.footer-logo-secondary {
  width: 90.502px;
  height: 35px;
}

.footer-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px; /* adjust as needed */
}

.footer-nav-item {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: var(--text-light);
  text-decoration: none;
  padding: 4px;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-nav-item.active {
  color: var(--accent-orange);
}

.footer-nav-item.dropdown {
  position: relative;
  cursor: pointer;
}

.footer-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  bottom: 100%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 8px;
  min-width: 180px;
  z-index: 10;
  flex-direction: column;
}

.footer-nav-item.dropdown:hover .footer-dropdown-menu,
.footer-nav-item.dropdown:focus-within .footer-dropdown-menu {
  display: flex;
}

.footer-dropdown-item {
  padding: 10px 18px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-dropdown-item:hover {
  background: #f5f5f5;
}

.btn-footer-secondary {
  background: transparent;
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-footer-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}

.social-link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link img {
  max-width: 100%;
  max-height: 100%;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: var(--text-light);
}
