.pg-footer {
  font-family: 'Roboto', sans-serif;
  background: var(--var-black);
}
.footer {
    background-color: var(--var-pink);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.footer-wave-path {
    fill: var(--var-white);
}
.footer-wave-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}
.footer-content {
    position: relative;
    z-index: 2;
    padding: 80px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
}
.footer-section {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}
.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}
.footer-logo-img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    text-align: center;
}
.footer-title {
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Horizon";
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 12px;
}
.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}
.footer-text {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}
.footer-social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}
.footer-social-link {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
}
.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 40px;
}
.footer-copyright {
    background-color: var(--var-pink);
    color: #fff;
    text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
    color: var(--var-black);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-main {
        gap: 50px;
    }
    .footer-section {
        max-width: 280px;
    }
    .footer-wave-svg {
        height: 120px;
    }
}
@media (max-width: 1024px) {
    .footer-main {
        gap: 40px;
    }
    .footer-section {
        min-width: 180px;
        max-width: 250px;
    }
    .footer-wave-svg {
        height: 110px;
    }
}
@media (max-width: 768px) {
    .footer-content {
        padding: 150px 20px 30px;
    }
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }
    .footer-section {
        min-width: unset;
        max-width: unset;
        width: 100%;
    }
    .footer-logo {
        display: none;
    }
    .footer-logo-img {
        width: 150px;
    }
    .footer-social-links {
        justify-content: center;
    }
    .footer-link::before {
        display: none;
    }
    .footer-wave-svg {
        height: 80px;
    }
}
@media (max-width: 576px) {
    .footer-content {
        padding: 150px 18px 28px;
    }
    .footer-main {
        gap: 35px;
    }
    .footer-title {
        font-size: 19px;
        margin-bottom: 20px;
    }
    .footer-description {
        font-size: 14px;
    }
    .footer-link {
        font-size: 15px;
    }
    .footer-social-link {
        font-size: 22px;
        padding: 9px;
    }
    .footer-wave-svg {
        height: 70px;
    }
}
@media (max-width: 480px) {
    .footer-content {
        padding: 150px 15px 25px;
    }
    .footer-main {
        gap: 30px;
    }
    .footer-title {
        font-size: 18px;
    }
    .footer-link {
        font-size: 14px;
    }
    .footer-logo-img {
        width: 120px;
    }
    .footer-social-link {
        font-size: 20px;
        padding: 8px;
    }
    .footer-wave-svg {
        height: 60px;
    }
}
