/* Footer Styles - Serrurier Theme */
.serrurier-footer {
  background: linear-gradient(135deg, #1A252F 0%, #2C3E50 100%);
  color: white;
  padding: 60px 0 0;
  position: relative;
}

.serrurier-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E67E22 0%, #F39C12 50%, #E67E22 100%);
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-title {
  color: #E67E22;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-description {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.footer-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(230, 126, 34, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-weight: 500;
  border: 1px solid rgba(230, 126, 34, 0.3);
  transition: all 0.3s ease;
}

.footer-highlight:hover {
  background: rgba(230, 126, 34, 0.25);
  transform: translateY(-2px);
}

.highlight-icon {
  color: #27AE60;
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.875rem;
  position: relative;
  padding-left: 1.25rem;
}

.footer-links li::before {
  content: '🔑';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9375rem;
}

.footer-link:hover {
  color: #F39C12;
  transform: translateX(5px);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(230, 126, 34, 0.15);
}

.contact-icon {
  font-size: 1.25rem;
  color: #E67E22;
}

.contact-link {
  color: #F39C12;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #27AE60;
  text-decoration: underline;
}

.footer-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-badge:hover {
  background: rgba(230, 126, 34, 0.2);
  border-color: rgba(230, 126, 34, 0.4);
  transform: translateY(-2px);
}

.badge-highlight {
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.2) 0%, rgba(243, 156, 18, 0.2) 100%);
  border-color: rgba(230, 126, 34, 0.4);
}

/* Regions Section */
.footer-regions {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.regions-title {
  color: #E67E22;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.regions-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.regions-list li {
  position: relative;
}

.regions-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
}

.regions-list a:hover {
  color: #F39C12;
  background: rgba(230, 126, 34, 0.1);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Legal Section */
.footer-legal {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  border-top: 3px solid #E67E22;
}

.footer-legal-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal-links a:hover {
  color: white;
  background-color: rgba(230, 126, 34, 0.2);
  transform: translateY(-2px);
}

.footer-legal-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E67E22 0%, #F39C12 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-legal-links a:hover::after {
  width: 80%;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-align: right;
}

/* Service Badges */
.service-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.service-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(39, 174, 96, 0.2);
  transition: all 0.3s ease;
}

.service-badge:hover {
  background: rgba(39, 174, 96, 0.2);
  transform: translateX(3px);
}

.badge-icon {
  color: #27AE60;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .serrurier-footer {
    padding: 40px 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-legal-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .footer-legal-links a {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
    margin-top: 1rem;
  }

  .regions-list {
    padding: 0 1.25rem;
    gap: 0.75rem 1.5rem;
  }

  .service-badges {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 1rem;
  }

  .regions-list a {
    font-size: 0.8125rem;
  }

  .footer-description {
    font-size: 0.875rem;
  }
}