/* Footer Styles */
.footer {
  background-color: var(--secondary);
  color: #fff;
  padding-top: 80px;
  position: relative;
}

.footer-top {
  padding-bottom: 50px;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
}

.footer-text {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

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

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--text-dark);
}

.footer-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-links a i {
  margin-right: 10px;
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 15px;
  color: var(--primary);
}

.contact-text {
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-form {
  position: relative;
}

.footer-form input {
  width: 100%;
  padding: 15px;
  padding-right: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 5px;
  color: #fff;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  background-color: var(--primary);
  border: none;
  border-radius: 0 5px 5px 0;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--primary);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-payment {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.payment-icon {
  width: 40px;
  height: 25px;
  background-color: #fff;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payment-icon img {
  height: 15px;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }

  .footer-top {
    padding-bottom: 30px;
  }

  .footer-widget {
    margin-bottom: 40px;
  }
}

