/* Footer */

.wcp-footer {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.8);
    background:
      radial-gradient(circle at top left, rgba(242,115,15,0.24), transparent 36%),
      radial-gradient(circle at bottom right, rgba(28,58,115,0.45), transparent 34%),
      var(--gradient-hero);
  }

  .wcp-footer__container {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }

  .wcp-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  .wcp-footer__text {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.75;
  }

  .wcp-footer__socials {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .wcp-footer__social {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transition: 0.25s ease;
  }

  .wcp-footer__social:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .wcp-footer__social span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }

  .wcp-footer__title {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
  }

  .wcp-footer__list,
  .wcp-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .wcp-footer__list {
    display: grid;
    gap: 12px;
  }

  .wcp-footer__contact-list {
    display: grid;
    gap: 16px;
    font-size: 14px;
  }

  .wcp-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .wcp-footer__contact-icon {
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--accent);
    font-size: 15px;
    line-height: 1.4;
  }

  .wcp-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: 0.25s ease;
  }

  .wcp-footer__link:hover {
    color: var(--accent);
  }

  .wcp-footer__arrow {
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.25s ease;
  }

  .wcp-footer__link:hover .wcp-footer__arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .wcp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .wcp-footer__bottom-container {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.5;
  }

  @media (max-width: 991px) {
    .wcp-footer {
      margin-top: 80px;
    }

    .wcp-footer__container {
      grid-template-columns: repeat(2, 1fr);
      padding: 56px 0;
    }
  }

  @media (max-width: 767px) {
    .wcp-footer {
      margin-top: 64px;
    }

    .wcp-footer__container {
      grid-template-columns: 1fr;
      gap: 36px;
      padding: 48px 0;
    }

    .wcp-footer__bottom-container {
      flex-direction: column;
      text-align: center;
    }
  }



/* Remove extra gap above footer across all pages */
.wcp-footer{margin-top:0!important;}
