/* ============================================================
   footer.css — Footer Styles
   ============================================================ */



.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,242,232,.1);
}

/* ── Brand column ───────────────────────────────────────────── */
.footer-brand .site-logo__name { color: var(--parchment); font-size: 1.1rem; }
.footer-brand .site-logo__sub  { color: var(--amber-pale); }

.footer-brand__desc {
  margin-top: 1.25rem;
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(247,242,232,.65);
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247,242,232,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,242,232,.7);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--warm-white);
  transform: translateY(-2px);
}

/* ── Footer columns ─────────────────────────────────────────── */
.footer-col h4 {
  font-family: var(--font-label);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-col ul a {
  font-size: .9rem;
  color: rgba(247,242,232,.65);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.footer-col ul a::before {
  content: '→';
  font-size: .75rem;
  color: var(--amber);
  transition: transform .2s ease;
}

.footer-col ul a:hover {
  color: var(--amber-pale);
  padding-left: .25rem;
}

.footer-col ul a:hover::before { transform: translateX(3px); }

/* ── Contact info ────────────────────────────────────────────── */
.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(200,137,42,.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-light);
  font-size: .85rem;
}

.footer-contact-item p { font-size: .875rem; color: rgba(247,242,232,.65); line-height: 1.5; }
.footer-contact-item a { color: rgba(247,242,232,.65); }
.footer-contact-item a:hover { color: var(--amber-pale); }

/* ── Footer bottom ───────────────────────────────────────────── */
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p, .footer-bottom a {
  font-family: var(--font-label);
  font-size: .7rem;
  letter-spacing: .08em;
  color: rgba(247,242,232,.4);
}

.footer-bottom a:hover { color: var(--amber); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Legal strip — centrat, responsive ──────────────────────── */
.footer-legal {
  border-top:    1px solid rgba(247,242,232,.08);
  border-bottom: 1px solid rgba(247,242,232,.08);
  padding: 1.1rem 0;
  margin-bottom: 0;
  text-align: center;
}

.footer-legal__label {
  font-family: var(--font-label);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(247,242,232,.35);
  margin-bottom: .75rem;
}

.footer-legal__badges {
  display: flex;
  align-items: center;
  justify-content: center;   /* centrat orizontal */
  flex-wrap: wrap;
  gap: .55rem;
}

.footer-legal__badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-label);
  font-size: .65rem;
  letter-spacing: .07em;
  color: rgba(247,242,232,.5);
  border: 1px solid rgba(247,242,232,.18);
  border-radius: 5px;
  padding: .32rem .8rem;
  text-decoration: none;
  transition: color .25s, border-color .25s, background .25s;
  white-space: nowrap;
}

.footer-legal__badge:hover {
  color: #f4d18a;
  border-color: #c8892a;
  background: rgba(200,137,42,.08);
}

.footer-legal__eu {
  background: #003399;
  color: #ffcc00;
  font-size: .54rem;
  padding: .06rem .3rem;
  border-radius: 2px;
  font-weight: 700;
  line-height: 1.2;
}

/* ── Footer — garantat fara spatiu sub el ────────────────────── */
.site-footer {
  background: var(--forest-deep);
  color: rgba(247,242,232,.75);
  padding: 4rem 0 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 300px 0 300px var(--forest-deep);
  margin-bottom: 0;
  flex-shrink: 0;
}

/* ── FAB phone — pozitionat corect, stabil pe mobile ────────── */
.fab-phone {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  background: var(--forest-mid);
  color: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(27,46,26,.4);
  z-index: 400;
  transition: var(--transition);
  text-decoration: none;
}
.fab-phone:hover {
  background: var(--amber);
  color: var(--warm-white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(200,137,42,.5);
}
