/* Vorenza Rentals - Footer Styles */
/* Uses .vzn-footer-wrapper for scoping instead of #vorenza-page */

/* Premium Footer Styles */
.vzn-footer-wrapper .vzn-footer {
  padding: 4rem 0 2rem;
  background: var(--vzn-grey-100);
  border-top: 1px solid var(--vzn-border-light);
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', system-ui, sans-serif;
}

.vzn-footer-wrapper .vzn-footer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.vzn-footer-wrapper .vzn-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--vzn-primary);
}

.vzn-footer-wrapper .vzn-container {
  max-width: var(--vzn-max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.vzn-footer-wrapper .vzn-footer-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--vzn-border-light);
}

.vzn-footer-wrapper .vzn-footer-locations li {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--vzn-text-secondary);
}

.vzn-footer-wrapper .vzn-footer-locations li strong {
  color: var(--vzn-text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.vzn-footer-wrapper .vzn-footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
}

.vzn-footer-wrapper .vzn-footer-brand p {
  color: var(--vzn-text-secondary);
  line-height: 1.7;
  max-width: 350px;
  margin-bottom: 1.5rem;
}

.vzn-footer-wrapper .vzn-footer-section h4 {
  color: var(--vzn-text-primary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.vzn-footer-wrapper .vzn-footer-links {
  list-style: none;
}

.vzn-footer-wrapper .vzn-footer-links li {
  margin-bottom: 0.75rem;
}

.vzn-footer-wrapper .vzn-footer-links a {
  color: var(--vzn-text-secondary);
  transition: var(--vzn-transition);
  display: inline-block;
  text-decoration: none;
}

.vzn-footer-wrapper .vzn-footer-links a:hover {
  color: var(--vzn-primary);
  transform: translateX(5px);
}

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

.vzn-footer-wrapper .vzn-copyright {
  color: var(--vzn-text-muted);
  font-size: 0.875rem;
}

.vzn-footer-wrapper .vzn-copyright a {
  color: var(--vzn-text-muted);
}

.vzn-footer-wrapper .vzn-copyright a:hover {
  color: var(--vzn-primary);
}

.vzn-footer-wrapper .vzn-social-row {
  display: flex;
  gap: 1rem;
}

.vzn-footer-wrapper .vzn-social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--vzn-white);
  border: 1px solid var(--vzn-grey-300);
  border-radius: 50%;
  color: var(--vzn-text-secondary);
  transition: var(--vzn-transition);
  text-decoration: none;
}

.vzn-footer-wrapper .vzn-social-row a:hover {
  background: var(--vzn-primary);
  color: var(--vzn-white);
  transform: translateY(-3px);
  box-shadow: var(--vzn-shadow-md);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .vzn-footer-wrapper .vzn-footer-content {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }
  .vzn-footer-wrapper .vzn-footer-content > .vzn-footer-section:nth-child(4) {
    grid-column: 2 / 4;
  }
}

@media (max-width: 1024px) {
  .vzn-footer-wrapper .vzn-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .vzn-footer-wrapper .vzn-footer-content > .vzn-footer-section:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .vzn-footer-wrapper .vzn-container {
    padding: 0 16px;
  }

  .vzn-footer-wrapper .vzn-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vzn-footer-wrapper .vzn-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .vzn-footer-wrapper .vzn-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
