/* ===== FOOTER COMPONENT STYLES ===== */
/* Scoped styles for Footer.html component to avoid conflicts with other components */
/* Universal Footer Styles - Works for both index.html and other pages */
.footer-component {
  background: #2b384c;
  padding: 32px 0px 32px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 100vw;
  flex-shrink: 0;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.footer-main-frame {
  background: var(--gray-800, #2b384c);
  padding: 0px 89px 0px 89px;
  display: flex;
  flex-direction: row;
  row-gap: 22px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
  width: 100%;
  max-width: 1440px;
  flex-shrink: 0;
  position: relative;
}

.footer-logo-section {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.footer-logo-badge {
  background: var(--primary-500, #a53dff);
  border-radius: 1000px;
  padding: 0px 20px 0px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.footer-logo-text {
  color: #ffffff;
  text-align: left;
  font-family: "Poppins-Medium", sans-serif;
  font-size: 24px;
  line-height: 56px;
  font-weight: 500;
  position: relative;
}

.footer-brand-name {
  color: var(--gray-white, #ffffff);
  text-align: center;
  font-family: var(--heading-03-font-family, "WorkSans-SemiBold", sans-serif);
  font-size: var(--heading-03-font-size, 32px);
  line-height: var(--heading-03-line-height, 40px);
  font-weight: var(--heading-03-font-weight, 600);
  position: relative;
}

.footer-content-wrapper {
  display: flex;
  flex-direction: row;
  row-gap: 22px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
  flex: 1;
  width: 100%;
  max-width: 873px;
  position: relative;
}

.footer-nav-links {
  display: flex;
  flex-direction: row;
  gap: 0px;
  row-gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  flex: 1;
  max-width: 493px;
  position: relative;
}

.footer-nav-item-home, .footer-nav-item-about, .footer-nav-item-services, .footer-nav-item-process, .footer-nav-item-portfolio, .footer-nav-item-contact {
  padding: 12px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.footer-nav-item-home:hover, .footer-nav-item-about:hover, .footer-nav-item-services:hover, .footer-nav-item-process:hover, .footer-nav-item-portfolio:hover, .footer-nav-item-contact:hover {
  opacity: 0.7;
}

.footer-home, .footer-about, .footer-services, .footer-process, .footer-portfolio, .footer-contact {
  color: var(--gray-50, #f0f1f3);
  text-align: center;
  font-family: var(
    --body-regular-400-font-family,
    "WorkSans-Regular",
    sans-serif
  );
  font-size: var(--body-regular-400-font-size, 16px);
  line-height: var(--body-regular-400-line-height, 24px);
  font-weight: var(--body-regular-400-font-weight, 400);
  position: relative;
  transition: color 0.3s ease;
}

.footer-home:hover, .footer-about:hover, .footer-services:hover, .footer-process:hover, .footer-portfolio:hover, .footer-contact:hover {
  color: var(--primary-500, #a53dff) !important;
  text-decoration: none !important;
}

.footer-copyright {
  color: var(--gray-white, #ffffff);
  text-align: center;
  font-family: var(
    --body-regular-400-font-family,
    "WorkSans-Regular",
    sans-serif
  );
  font-size: var(--body-regular-400-font-size, 16px);
  line-height: var(--body-regular-400-line-height, 24px);
  font-weight: var(--body-regular-400-font-weight, 400);
  position: relative;
}

@media (max-width: 768px) {
  
  .footer-content-wrapper,
  .footer-main-frame {
    padding: 0px 20px;
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-nav-links {
    flex-direction: column;
    gap: 10px;
  }
}
