/* Footer Styles */
.bp-footer {
  background: var(--bp-card-bg);
  border-top: 1px solid var(--bp-border);
  padding: 64px 0 24px;
  margin-top: 80px;
}

.bp-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.bp-footer-title {
  color: var(--bp-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.bp-footer-address,
.bp-footer-email,
.bp-footer-phone {
  margin-bottom: 12px;
  line-height: 1.6;
}

.bp-footer-email a,
.bp-footer-phone a {
  color: var(--bp-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.bp-footer-email a:hover,
.bp-footer-phone a:hover {
  color: var(--bp-primary);
}

.bp-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-footer-nav li {
  margin-bottom: 12px;
}

.bp-footer-nav a {
  color: var(--bp-text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.bp-footer-nav a:hover {
  color: var(--bp-primary);
  transform: translateX(4px);
}

[dir="rtl"] .bp-footer-nav a:hover {
  transform: translateX(-4px);
}

.bp-social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.bp-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bp-bg);
  color: var(--bp-text);
  transition: all 0.3s ease;
  border: 1px solid var(--bp-border);
}

.bp-social-link:hover {
  background: var(--bp-primary);
  color: var(--bp-ink);
  transform: translateY(-4px);
  border-color: var(--bp-primary);
}

.bp-footer-policies {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bp-footer-policies a {
  color: var(--bp-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.bp-footer-policies a:hover {
  color: var(--bp-primary);
}

.bp-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--bp-border);
  text-align: center;
}

.bp-footer-tagline {
  font-weight: 600;
  font-size: 18px;
  color: var(--bp-primary);
  margin-bottom: 8px;
}

.bp-footer-copyright {
  font-size: 14px;
  color: var(--bp-gray-700);
  margin: 0;
}

/* Floating Buttons */
.bp-floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

[dir="rtl"] .bp-floating-buttons {
  right: auto;
  left: 24px;
}

.bp-floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}

.bp-whatsapp-btn {
  background: #25D366;
  color: #FFFFFF;
}

.bp-whatsapp-btn:hover {
  background: #128C7E;
  transform: scale(1.1);
}

.bp-call-btn {
  background: var(--bp-primary);
  color: var(--bp-ink);
}

.bp-call-btn:hover {
  background: var(--bp-primary-dark);
  transform: scale(1.1);
}

.bp-floating-btn svg {
  width: 28px;
  height: 28px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .bp-footer {
    padding: 48px 0 24px;
  }
  
  .bp-footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .bp-floating-buttons {
    bottom: 16px;
    right: 16px;
  }
  
  [dir="rtl"] .bp-floating-buttons {
    left: 16px;
  }
  
  .bp-floating-btn {
    width: 48px;
    height: 48px;
  }
  
  .bp-floating-btn svg {
    width: 24px;
    height: 24px;
  }
}

