/* Footer */

.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1c2526 100%);
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.1) 0%,
    transparent 70%
  );
  opacity: 0.5;
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer .footer-content {
  padding: 80px 0;
}

.footer .item h3 {
  font-family: "Gilda Display", serif;
  font-size: 36px;
  font-weight: 400;
  color: #d4a017;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.footer .contact-info p {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #e0e0e0;
  line-height: 28px;
  margin-bottom: 10px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer .contact-info p:hover {
  opacity: 1;
}

.footer .contact-info p strong {
  color: #d4a017;
  font-weight: 500;
}

.footer .contact-info a {
  color: #d4a017;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .contact-info a:hover {
  color: #fff;
}

.footer .social-connect {
  margin: 20px 0;
}

.footer .social-connect h4 {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #d4a017;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer .social-connect ul {
  padding: 0;
  margin: 0;
}

.footer .social-connect li {
  margin-right: 15px;
}

.footer .social-connect a {
  color: #d4a017;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer .social-connect a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.footer .disclaimer {
  margin-top: 30px;
}

.footer .disclaimer p {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #e0e0e0;
  line-height: 24px;
  opacity: 0.8;
  margin-bottom: 0;
}

.footer .disclaimer p strong {
  color: #d4a017;
  font-weight: 500;
}

.footer .logo {
  font-family: "Gilda Display", serif;
  font-size: 24px;
  font-weight: 400;
  color: #d4a017;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.footer .logo:hover {
  color: #fff;
}

.footer .logo img {
  max-width: 150px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer .logo:hover img {
  transform: scale(1.05);
}

.footer .qr-code {
  margin-top: 20px;
}

.footer .qr-code img {
  max-width: 120px;
  margin-bottom: 15px;
  border: 2px solid #d4a017;
  border-radius: 10px;
  padding: 5px;
  background: #fff;
  transition: transform 0.3s ease;
}

.footer .qr-code img:hover {
  transform: scale(1.1);
}

.footer .qr-code p {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #e0e0e0;
  line-height: 24px;
  margin-bottom: 5px;
}

.footer .qr-code p a {
  color: #d4a017;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .qr-code p a:hover {
  color: #fff;
}

/* Terms and Conditions Links */
.footer .legal-links {
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  padding-top: 20px;
}

.footer .legal-links a {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #d4a017;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer .legal-links a:hover {
  color: #fff;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
  .footer .footer-content {
    padding: 60px 0;
  }

  .footer .item h3 {
    font-size: 30px;
  }

  .footer .contact-info p {
    font-size: 15px;
    line-height: 26px;
  }

  .footer .social-connect h4 {
    font-size: 16px;
  }

  .footer .social-connect a {
    font-size: 18px;
  }

  .footer .disclaimer p {
    font-size: 13px;
    line-height: 22px;
  }

  .footer .qr-code img {
    max-width: 100px;
  }

  .footer .qr-code p {
    font-size: 13px;
    line-height: 22px;
  }

  .footer .legal-links a {
    font-size: 13px;
    margin: 0 8px;
  }
}

@media screen and (max-width: 576px) {
  .footer .footer-content {
    padding: 40px 0;
  }

  .footer .item h3 {
    font-size: 24px;
  }

  .footer .contact-info p {
    font-size: 14px;
    line-height: 24px;
  }

  .footer .social-connect h4 {
    font-size: 14px;
  }

  .footer .social-connect a {
    font-size: 16px;
  }

  .footer .disclaimer p {
    font-size: 12px;
    line-height: 20px;
  }

  .footer .logo {
    font-size: 20px;
  }

  .footer .qr-code img {
    max-width: 80px;
  }

  .footer .qr-code p {
    font-size: 12px;
    line-height: 20px;
  }

  .footer .legal-links a {
    font-size: 12px;
    margin: 0 5px;
  }
}
