footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  padding: 60px 0 20px 0;
  width: 100%;
}

footer a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--footer-link-hover);
}

footer .content {
  display: flex;
  flex-direction: column;
}

footer .content .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--footer-border-top);
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

footer .content .top .location {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .content .top .location i {
  font-size: var(--footer-icon-size);
  font-weight: 300;
  color: var(--footer-text-muted);
}

footer .content .top .location span {
  font-size: 20px;
  line-height: 1.5;
  max-width: 300px;
  color: var(--footer-text-muted);
}

footer .content .top .phone {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .content .top .phone i {
  font-size: var(--footer-icon-size);
  font-weight: 300;
  color: var(--footer-text-muted);
}

footer .content .top .phone span {
  font-size: 20px;
  line-height: 1.5;
  color: var(--footer-text-muted);
}

footer .content .bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

footer .content .bottom .left {
  min-width: 280px;
}

footer .content .bottom .right {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

footer .content .bottom .right .services {
  flex: 1;
  min-width: 200px;
}

footer .content .bottom .right .workHours {
  flex: 1;
  min-width: 200px;
}

footer .content .bottom strong {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
}

footer .content .bottom strong::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--footer-title-line);
  margin-top: 12px;
}

footer .content .bottom .list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .content .bottom .list span {
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .content .bottom .list span b {
  font-weight: normal;
}

footer .content .bottom .right .services .list a span {
  transition: transform 0.2s ease;
}

footer .content .bottom .right .services .list a:hover span {
  transform: translateX(4px);
  color: var(--footer-link-hover);
}

footer .content .bottom .right .services .list a span i {
  font-size: 18px;
  opacity: 0.8;
}

footer .content .bottom .left .socials {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

footer .content .bottom .left .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--footer-social-border);
  border-radius: 2px;
  transition: all 0.3s ease;
}

footer .content .bottom .left .socials a i {
  font-size: 18px;
}

footer .content .bottom .left .socials a:hover {
  background-color: var(--footer-social-bg-hover);
  border-color: var(--footer-text);
}

footer .content .copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 20px;
  font-size: 12px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 15px;
}

footer .content .copyright .dev {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .content .copyright .dev img {
  max-height: 18px;
  width: auto;
}

#whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #ffffff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

#whatsapp-float:hover {
  transform: scale(1.1);
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #222222;
  color: #ffffff;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 10000;
  font-size: 14px;
}

#cookie-banner p {
  margin: 0;
}

#cookie-banner a {
  color: #4da6ff;
  text-decoration: underline;
}

#accept-cookies {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
}

#accept-cookies:hover {
  background-color: #dddddd;
}

@media (max-width: 768px) {
  footer .content .top {
    flex-direction: column;
    align-items: flex-start;
  }

  footer .content .bottom {
    flex-direction: column;
    gap: 30px;
  }

  footer .content .bottom .right {
    flex-direction: column;
    gap: 30px;
  }

  footer .content .copyright {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}