/* Footer Base Styles */
.pfa-footer {
  background: #000;
  padding-top: 60px;
  margin-top: 80px;
  border-radius: 32px 32px 0 0;
  color: #fff;
  font-family: "Arial", sans-serif;
}

.border {
  width: 30px;
  height: 30px;
}
.fa-brands,
.fab {
  display: flex;
}

/* Footer Container - Main Layout */
.pfa-footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 60px 60px 40px;
  flex-wrap: wrap;

  background: url("/assets/images/Frame\ 1597885071.png") center/cover no-repeat;
  position: relative;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
}

/* Overlay for background image */
.pfa-footer-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* Individual Footer Box Styling */
.pfa-footer-box {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.pfa-footer-box h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 600;
}

.pfa-footer-box p {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #e9e9ea;
  opacity: 0.9;
  line-height: 160%;
}

/* About Section Specifics (Left Content) */
.pfa-about {
  max-width: 480px;
}

.pfa-about img {
  margin-bottom: 14px;
}

/* List Styling */
.pfa-footer-box ul {
  padding: 0;
  list-style: none;
}

.pfa-footer-box ul li {
  margin-bottom: 8px;
}

.pfa-footer-box ul li a {
  color: #ced4da;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.pfa-footer-box ul li a:hover {
  color: #fff;
}

/* Links and Contact Wrapper (Right Content) */
.pfa-links-contact-wrapper {
  display: flex;
  gap: 70px;
  position: relative;
  z-index: 2;
}

/* Email Styling */
.pfa-email {
  font-size: 30px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 500;
  line-height: 130%;
}

/* Contact Info Layout */
.pfa-contact-details {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.pfa-contact-details p {
  margin: 0;
  font-size: 15px;
}

/* End Footer (Bottom Bar) */
.pfa-end-footer {
  max-width: 1320px;
  margin: 20px auto 0;
  padding: 14px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.pfa-copy {
  color: white;
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

/* Social Icons */
.pfa-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pfa-social span {
  color: white;
  font-size: 16px;
  opacity: 0.8;
  margin-right: 10px;
}

.pfa-social a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
  opacity: 0.85;
}

.pfa-social a:hover {
  opacity: 1;
}

/* --- Responsive Design (Media Queries) --- */

@media (max-width: 1200px) {
  .pfa-footer-container {
    justify-content: center;
    gap: 40px;
  }

  .pfa-about {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .pfa-links-contact-wrapper {
    gap: 40px;
  }
}

/* Tablet Portrait and Large Mobile (<= 768px) */
@media (max-width: 768px) {
  .pfa-footer-container {
    flex-direction: column;
    align-items: center;
    padding: 40px 30px 30px;
  }

  .pfa-about {
    order: 1;
    max-width: 100%;
    text-align: center;
  }

  .pfa-about img {
    display: block;
    margin: 0 auto 10px;
  }

  .pfa-links-contact-wrapper {
    order: 2;
    width: 100%;
    justify-content: space-around;
    gap: 30px;
  }

  .pfa-quick-link,
  .pfa-sound-packs {
    width: 45%;
    text-align: left;
  }

  .pfa-contact {
    width: 100%;
    text-align: left;
  }

  .pfa-end-footer {
    flex-direction: column;
    gap: 10px;
    padding: 14px 30px;
    text-align: center;
  }

  .pfa-social span {
    margin-right: 5px;
  }
}

/* Mobile Small (<= 480px) */
@media (max-width: 480px) {
  .pfa-footer {
    padding-top: 30px;
  }

  .pfa-footer-container {
    padding: 30px 20px 20px;
  }

  .pfa-about p {
    font-size: 14px;
  }

  .pfa-links-contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .pfa-quick-link,
  .pfa-sound-packs,
  .pfa-contact {
    width: 100%;
    text-align: center;
  }

  .pfa-footer-box h3 {
    font-size: 18px;
  }

  .pfa-email {
    font-size: 24px;
    word-break: break-all;
  }

  .pfa-contact-details {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .pfa-end-footer {
    padding: 10px 20px;
  }

  .pfa-social {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .pfa-social span {
    margin-right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
}
