/* Footer section starts here! */
footer {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-bg-glassy);
}
#footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 8px;
  background-color: var(--color-bg-glassy); 
  border-top: solid 1px var(--color-bg-glassy); 
}

/* Footer-nav section starts here! */
#footer-section {
  width: min(90vw, 1200px);
  display: flex;
  justify-content: space-between;
}
#footer-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-box {
  display: flex;
  gap: 24px;
}
.footer-heading {
  width: fit-content;
  border-bottom: solid 1px;
  color: var(--color-white);
}
.footer-arrow {
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  font: 0.75rem monospace;
  color: var(--color-white);
}
.footer a {
  position: relative;
  font-size: 0.75rem;
  font-family: jura;
  padding: 4px;
  color: var(--color-semi-white);
}
.footer a:hover {
  color: white;
}
.footer a:hover .footer-arrow {
  opacity: 1;
  transform: translateX(-1);
}
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: white;
  transition: width 0.3s ease-out;
}
.footer a:hover::after {
  width: 100%;
}
.ind-box {
  display: flex;
  gap: 12px;
}
/* Footer-nav section ends here! */

/* Footer-contact section starts here! */
.contact-details {
  display: flex;
  justify-content: space-between;
  padding-right: 80px;
  align-items: end;
}
.contact-icons {
  display: flex;
  padding-top: 12px;
  gap: 4px;
}
.contact-icon {
  width: 32px;
  height: 32px;
}
.contact-text, .icon-link {
  padding: 0px;
  font-size: 0.75rem;
}
/* Footer-contact section ends here! */

/* Footer-form section starts here! */
#footer-form {
  width: 25vw;
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
  color: white;
}
.form-input {
  margin-top: 4px;
  margin-bottom: 8px;
  padding: 6px 8px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-semi-white);
  font-size: 0.75rem;
  outline: none;
  backdrop-filter: blur(5px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.form-label {
  font-size: 0.75rem;
  color: var(--color-semi-white);
}
.form-submit {
  padding: 12px;
  color: var(--color-white);
  background-color: var(--color-bg-dark);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.form-submit:hover {
  background-color: var(--color-bg-gray);
}
/* Form section ends here! */

/* Footer-end starts here! */
.footer-semi-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(90vw, 1200px);
}
.footer-end {
  display: flex;
  justify-content: end;
  width: 100%;
}
.footer-text {
  font-size: 0.75rem;
  padding: 2px;
  color: var(--color-semi-white);
}
.footer-text:hover {
  color: white;
}
/* Footer-end ends here */