/* Navbar Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 100;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .header {
  background: rgba(5, 10, 21, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navContainer {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

@media (min-width: 576px) {
  .logo {
    gap: 12px;
    font-size: 1.75rem;
    letter-spacing: 1px;
  }
}

.logoIcon svg {
  display: block;
}

.desktopNav {
  display: none;
}

@media (min-width: 992px) {
  .desktopNav {
    display: flex;
    flex: 2;
    justify-content: center;
  }
}

.navLinks {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navLinks li a {
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}

.navLinks li a:hover {
  color: var(--color-primary);
}

.navActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex: 1;
}

@media (min-width: 576px) {
  .navActions {
    gap: 1rem;
  }
}

.signInBtn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.signInBtn:hover {
  background: var(--color-primary-dark);
}

.signInBtn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 576px) {
  .signInText {
    display: none;
  }
  .signInBtn {
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    justify-content: center;
  }
  .navActions {
    gap: 0.3rem;
  }
}

.iconBtn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.iconBtn:hover {
  background: rgba(128, 128, 128, 0.1);
  color: var(--color-primary);
}

.mobileMenuBtn {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .mobileMenuBtn {
    display: none;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(to bottom, #0A111F, #060A13);
  color: var(--color-text-light);
  padding: 5rem 0 0 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.5;
  box-shadow: 0 0 20px var(--color-primary);
}

.footerGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .footerGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footerGrid {
    grid-template-columns: 2.5fr 1fr 1fr 2fr;
  }
}

.companyInfo .logo {
  color: white;
  margin-bottom: 1rem;
}

.companyMotto {
  color: white;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.companyDesc {
  color: var(--color-silver);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 380px;
}

.socialLinks {
  display: flex;
  gap: 1rem;
}

.socialLinks a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.socialLinks a:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.linksGroup h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.linksGroup ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.linksGroup a {
  color: var(--color-silver);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.linksGroup a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.newsletterGroup p {
  color: var(--color-silver);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletterForm {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 4px;
  transition: all 0.3s ease;
}

.newsletterForm:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.newsletterInput {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
}

.newsletterInput:focus {
  outline: none;
}

.newsletterBtn {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.newsletterBtn:hover {
  background: var(--color-primary-dark);
}

.bottomBar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.bottomBarInner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .bottomBarInner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.bottomBarInner p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.legalLinks {
  display: flex;
  gap: 1.5rem;
}

.legalLinks a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.legalLinks a:hover {
  color: white;
}
