#footer {
  padding: 2rem 0;
  background: 
  radial-gradient(ellipse at 80% 30%, rgba(232, 101, 10, 0.18) 0%, transparent 60%),
  linear-gradient(#282828, #0a0a0a);
    color: var(--light);
  text-align: center;
  font-size: 0.9rem;
}


.footer-container {
  width: 90%;
  max-width: 1100px;
  margin: 5rem auto;
}

@media (max-width: 720px) {
  
}

/* Footer navigation (subtle, not full header style) */
.footer-nav {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
  background: rgba(255,255,255,0.02);
  transition: background 160ms ease, transform 120ms ease;
}
.footer-links a:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.footer-links a.btn-contact {
  background: var(--orange);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
}

.footer-legal-links {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
  transition: color 140ms ease, background 140ms ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(244, 124, 32, 0.22);
  border-color: rgba(244, 124, 32, 0.7);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-btn span {
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-company-meta {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-company-meta p {
  margin: 0.2rem 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

@media (max-width: 480px) {
  .footer-links { gap: 0.5rem; }
  .footer-links a { padding: 0.4rem 0.6rem; }
  .footer-links a.btn-contact { width: auto; }
  .social-btn span { display: none; }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1c1c1c;
  border-top: 1px solid rgba(244, 124, 32, 0.35);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.45);
}
.cookie-banner.hidden { display: none; }

.cookie-banner__content {
  flex: 1;
  min-width: 200px;
}
.cookie-banner__content p {
  margin: 0 0 0.2rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.cookie-banner__content a {
  color: var(--orange);
  text-decoration: none;
}
.cookie-banner__content a:hover { text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.5rem 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 140ms ease, transform 120ms ease;
  white-space: nowrap;
}
.cookie-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.cookie-btn--accept { background: var(--orange); color: #fff; }
.cookie-btn--necessary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}