/* ========================================
   VEIRON AUTO - Footer Styles (Romanian)
   Extracted from contact-ro.css for reusability
   ======================================== */

.footer {
  background: #fff;
  border-top: 2px solid #ff4c00;
  margin-top: 2rem;
  font-size: 0.97rem;
  color: #232526;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1rem 0.5rem 1rem;
}

.footer-content {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo-contact {
  min-width: 210px;
  max-width: 260px;
}

.footer-logo-contact .logo-link {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff4c00;
  text-decoration: none;
  margin-bottom: 0.5em;
  display: inline-block;
}

.footer-logo-contact .footer-contact p {
  margin: 0.15em 0;
  font-size: 0.97rem;
}

.footer-links-columns {
  display: flex;
  gap: 2.5rem;
}

.footer-links-col h3 {
  font-size: 1.05rem;
  color: #ff4c00;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col li {
  margin-bottom: 0.3em;
}

.footer-links-col a {
  color: #232526;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: #ff4c00;
}

.footer-fiscal {
  min-width: 210px;
  max-width: 260px;
}

.footer-fiscal h3 {
  font-size: 1.05rem;
  color: #ff4c00;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.footer-fiscal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-fiscal li {
  margin-bottom: 0.2em;
  font-size: 0.97rem;
}

.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 0.93rem;
  margin-top: 1.2rem;
  border-top: 1px solid #eee;
  padding-top: 0.7rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .footer-content {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-logo-contact, .footer-fiscal {
    min-width: 160px;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
  }
  .footer-logo-contact, .footer-links-columns, .footer-fiscal {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .footer-links-columns {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 16px;
  }
}
