/* ===============================================
   VALUE FOOTER - Rucking Polska
   Newsletter + Facebook + Grupa w pionie
=============================================== */

.value-footer {
  background: linear-gradient(180deg, #1a1f2e 0%, #0b0f13 100%);
  border-top: 3px solid #e63946;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.value-grid {
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-card {
  background: rgba(26, 31, 46, 0.6);
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e63946, #2a9d8f);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.value-card:hover {
  border-color: #e63946;
  background: rgba(26, 31, 46, 0.9);
  transform: translateX(5px);
}

.value-card:hover::before {
  transform: scaleY(1);
}

.value-card.newsletter-highlight {
  background: rgba(230, 57, 70, 0.08);
  border-color: #e63946;
  border-width: 2px;
  padding: 2rem 2.5rem;
}

.value-card.newsletter-highlight .card-icon {
  font-size: 2.5rem;
}

.value-card.newsletter-highlight .card-title h3 {
  color: #e63946;
  font-size: 1.5rem;
}

.value-card.newsletter-highlight .card-description {
  font-size: 1.1rem;
  font-weight: 500;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.card-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.card-title h3 {
  color: #2a9d8f;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.card-description {
  flex: 1;
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.card-cta {
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #e63946, #c62e39);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  background: linear-gradient(135deg, #c62e39, #a82631);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-line-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-brand-text h4 {
  font-size: 1rem;
  color: #e63946;
  font-weight: 800;
  margin-bottom: 0.1rem;
}

.footer-brand-text p {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  color: #2a9d8f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-contact a:hover {
  color: #e63946;
}

.footer-line-2 {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-line-2 p {
  color: #6b7280;
  font-size: 0.8rem;
  margin: 0;
}

.footer-line-2 a {
  color: #2a9d8f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-line-2 a:hover {
  color: #e63946;
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .value-card {
    padding: 1.25rem 1.5rem;
  }
  
  .card-header {
    margin-bottom: 1rem;
  }
  
  .card-icon {
    font-size: 1.75rem;
  }
  
  .card-title h3 {
    font-size: 1.15rem;
  }
  
  .card-body {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .card-description {
    font-size: 0.95rem;
  }
  
  .card-cta {
    width: 100%;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .footer-line-1 {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-brand,
  .footer-contact {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  
  .footer-line-2 {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .value-footer {
    padding: 2rem 0 1.5rem;
  }
  
  .value-card {
    padding: 1rem 1.25rem;
  }
  
  .card-header {
    gap: 0.75rem;
  }
  
  .card-icon {
    font-size: 1.5rem;
  }
}
