/* Footer Styles */
.footer-section {
  background-color: #ffffff;
  padding: 80px 20px 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 60px;
  line-height: 1.2;
}

.installations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.installation-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.installation-card:hover {
  border-color: #467ff7;
  box-shadow: 0 8px 24px rgba(70, 127, 247, 0.15);
  transform: translateY(-4px);
}

.installation-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #467ff7, #2d5acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.installation-icon svg {
  width: 32px;
  height: 32px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
}

.installation-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.4;
}

.installation-description {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 24px;
}

.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #467ff7;
  font-weight: 600;
  font-size: 16px;
  transition: gap 0.3s ease;
}

.visit-link:hover {
  gap: 12px;
}

.visit-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.contact-info {
  border-top: 2px solid #e5e7eb;
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
}

.contact-icon-wrapper {
  width: 56px;
  height: 56px;
  background: #e8f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke: #467ff7;
  fill: none;
  stroke-width: 2;
}

.contact-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.contact-details {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.contact-details a {
  color: #467ff7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #2d5acc;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #467ff7;
  border-color: #467ff7;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke: #467ff7;
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.social-link:hover svg {
  stroke: #ffffff;
}

.copyright {
  background: #f8f9ff;
  padding: 24px 20px;
  text-align: center;
  border-top: 2px solid #e5e7eb;
}

.copyright-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.developer-link {
  color: #467ff7;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.developer-link:hover {
  color: #2d5acc;
}

/* Map specific styles for footer if needed */
.footer-map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  width: 100%;
  border: 1px solid #e5e7eb;
}

.footer-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .footer-section {
    padding: 60px 16px 0;
  }

  .footer-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .installations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .installation-card {
    padding: 24px;
  }

  .installation-name {
    font-size: 18px;
  }

  .installation-description {
    font-size: 16px;
  }

  .contact-info {
    padding: 40px 0;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .contact-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }

  .copyright {
    padding: 20px 16px;
  }

  .copyright-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer-title {
    font-size: 28px;
  }

  .installation-icon {
    width: 56px;
    height: 56px;
  }

  .installation-icon svg {
    width: 28px;
    height: 28px;
  }

  .installation-name {
    font-size: 17px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
