/* =========================================================
   FOOTER STRUCTURE
========================================================= */
.included-footer {
  width: 100%;
}

.footer {
  background: linear-gradient(180deg, #F4F5F8 0%, rgba(244, 245, 248, 0) 100%);
  color: #d1d5db;
  margin-top: 2%;
}

/* =========================================================
   FOOTER CONTAINER & GRID
========================================================= */
.footer-container {
  padding: 60px 20px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, fit-content);
  gap: 40px;
}

.footer-section {
  width: fit-content;
}

/* =========================================================
   COMPANY INFO
========================================================= */
.footer-company {
  color: #9ca3af;
}

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

.footer-logo h2 {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
}

.footer-company p {
  margin-top: 20px;
  width: 75%;
  color: rgba(93, 107, 114, 1);
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
}

/* =========================================================
   FOOTER LINKS
========================================================= */
.footer-section h3 {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: rgba(24, 44, 53, 1);
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

/* =========================================================
   SOCIAL LINKS
========================================================= */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  color: #6E8A9E;
  font-size: 1.1rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #E9EDF0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.1);
}

/* =========================================================
   FOOTER BOTTOM SECTION
========================================================= */
.footer-bottom {
  border-top: 1px solid #DFE2E4;
  margin-top: 50px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* =========================================================
   COPYRIGHT
========================================================= */
.footer-copy {
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-copy a {
  color: #E74F54;
}

/* =========================================================
   EXTRA UTILITIES
========================================================= */
.footer-value {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #5D6B72;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.footer .location {
  text-decoration: underline;
}
