:root {
  --container: 1500px;
}

/* ─── 11. FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--primary-color);
  color: var(--white-color);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* Footer logo */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo-img {
  width: auto !important;
  height: 200px !important;
  object-fit: contain !important;
}

/* Links column */
.footer__col-title {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer__col-title:last-of-type {
  width: 60%;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 1rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer__links a:hover { opacity: 1; }

/* Social */
.footer__social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.social-icon {
  width: 36px !important;
  height: 36px !important;
  display: grid !important;
  place-items: center !important;
  transition: transform 0.3s ease !important;
}

.social-icon svg {
  width: 30px !important;
  height: 30px !important;
  fill: var(--white-color) !important;
}
.social-icon:hover {
  transform: scale(1.2);
}

/* Contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.8;
}

.contact-icon {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
  stroke: var(--white-color) !important;
}

.footer_ends {
  display: flex;
  justify-content: space-around;
  margin: 2.5rem 1rem 0 1rem;
}

.footer_ends a {
  text-decoration: underline;
}

@media (max-width: 900px) {
  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }
  .footer__logo {
    grid-column: 1 / -1;
  }
  .footer__logo-img {
    height: 100px !important;
  }
}

@media (max-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__social-icons { flex-wrap: wrap; }
}