/* Custom ZiHERO Footer Styles */
.zihero-footer {
  width: 100%;
  background-color: #dbe9f1;
  padding: 28px 24px;
}

.zihero-footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.zihero-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-bottom: 0;
  max-width: 1240px;
  opacity: 1;
}

@media (min-width: 768px) {
  .zihero-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .zihero-footer-grid {
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
  }
}

/* Logo Section */
.zihero-footer-logo-section {
  display: flex;
  flex-direction: column;
}

.zihero-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.zihero-footer-logo-icon {
  width: 40px;
  height: 40px;
  background-color: #2563eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.zihero-footer-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.zihero-footer-description {
  font-size: 14px;
  color: #374151;
  line-height: 1.625;
  margin-bottom: 24px;
  max-width: 320px;
}

.zihero-footer-social {
  display: flex;
  gap: 12px;
}

.zihero-footer-social-link {
  width: 40px;
  height: 40px;
  background-color: #00b4ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.zihero-footer-social-link:hover {
  opacity: 0.9;
}

.zihero-footer-social-icon {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: currentColor;
}

/* Footer Columns */
.zihero-footer-column h3 {
  font-size: 20px;
  font-weight: 700;
      width: 200px;
  color: #111827;
  margin-bottom: 24px;
  margin-top: 0;
}

.zihero-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.zihero-footer-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.zihero-footer-link-item:hover {
  color: #111827;
}

.zihero-footer-link-arrow {
  width: 10px;
  height: 10px;
  fill: currentColor;
  flex-shrink: 0;
}

/* QR Code Section */
.zihero-footer-qr-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  margin-top: 0;
}

.zihero-footer-qr-container {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .zihero-footer-qr-container {
    justify-content: flex-start;
  }
}

.zihero-footer-qr-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

/* Bottom Section */
.zihero-footer-bottom {
  border-top: 1px solid #6b7280;
  padding-top: 16px;
  margin-top: 32px;
}

.zihero-footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #374151;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .zihero-footer {
    padding: 48px 16px;
  }
  
  .zihero-footer-grid {
    gap: 48px;
  }
  
  .zihero-footer-description {
    max-width: 100%;
  }
  
  .zihero-footer-qr-image {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .zihero-footer-logo-text {
    font-size: 20px;
  }
  
  .zihero-footer-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .zihero-footer-column h3,
  .zihero-footer-qr-title {
    font-size: 18px;
  }
}
