/**
 * Stiluri pentru Footer v1.5 - Curățat pentru a folosi sistemul de butoane
 * Tema: E_Cartop
 */

/* ==========================================================================
   Secțiunea Call to Action (Pre-Footer) v2.1
   ========================================================================== */
.pre-footer-cta {
    background-color: var(--color-bg-off-dark);
    color: #fff;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-text {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
}
.cta-text strong {
    font-weight: var(--font-weight-semibold);
}

/* Stilurile pentru butonul .button-secondary sunt acum în buttons.css */

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }
}


/* ==========================================================================
   Footer Principal
   ========================================================================== */
.site-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-secondary);
    padding: 3rem 0 2rem;
    text-align: center;
}
.footer-branding .footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
}
.footer-branding .footer-tagline {
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: #6C757D;
    text-transform: uppercase;
    margin: 0;
}
.footer-navigation {
    margin: 2rem 0;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}
.footer-menu a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}
.footer-menu a:hover {
    color: var(--color-primary);
}
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    margin-top: 2rem;
}
.copyright, .developer-credit {
    font-size: 0.85rem;
    color: #6C757D;
    margin: 0 0 0.5rem 0;
}
.developer-credit a {
    color: var(--color-primary);
}

/* ==========================================================================
   Stiluri pentru Siglele de Conformitate (ANPC)
   ========================================================================== */
.footer-compliance-logos {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* Spațiu între sigle */
}

.footer-compliance-logos img {
    display: block;
    max-width: 120px; /* O lățime maximă pentru a nu fi prea mari */
    height: auto;
    opacity: 0.8; /* Le facem puțin mai subtile */
    transition: opacity 0.3s ease;
}

.footer-compliance-logos a:hover img {
    opacity: 1; /* Opacitate completă la hover */
}





/* ==========================================================================
   Buton WhatsApp Sticky
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}


/* Floating Location Button (bottom-left) */
.floating-loc{
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  text-align: center;
  pointer-events: auto;
}
.floating-loc a{
  text-decoration: none;
  outline: none;
}

.floating-loc__label{
  display: inline-block;
  background: #fff;
  color: #121212;
  border: 1px solid #e6e6e6;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

.floating-loc__btn{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.floating-loc__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  background: var(--color-primary-hover);
}
.floating-loc__btn svg{
  display: block;
}

@media (max-width: 480px){
  .floating-loc{ left: 16px; bottom: 16px; }
  .floating-loc__btn{ width: 52px; height: 52px; }
  .floating-loc__label{ font-size: 11px; padding: 3px 9px; margin-bottom: 6px; }
}
