/* Footer Section Styles */
.footer {
  position: relative;
  width: 100%;
  padding: 100px 0 50px;
  background: #00040d;
}

.footer-container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 80px;
}

/* Branding Column */
.footer-about {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  width: 141px;
  height: auto;
}

.footer-about-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #ffffff;
  opacity: 0.8;
}

/* Link Columns */
.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #e6b511;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #ffffff;
  opacity: 0.6;
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: #e6b511;
}

/* Social & Contact Column */
.footer-contact-info {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  opacity: 0.6;
}

.footer-social-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  align-items: center;
}

.footer-social-icon img {
  width: 24px;
  height: 24px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.footer-social-icon:hover img {
  transform: scale(1.2);
  opacity: 0.8;
}

/* Bottom Area */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-copyright {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.3;
}
