footer.footer-2025 {
    border-top: 6px solid var(--b1);
    background: linear-gradient(15deg, var(--o2), var(--o1));
}
.footer-2025 .f-main {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 0;
}
.footer-2025 .f-col {
    flex: 1;
    padding: 0 30px;
}
.footer-2025 .f-logo-container {
    max-width: 240px;
    margin: 0 auto 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--b1);
}
.footer-2025 .f-logo-image img {
    width: 120px;
    margin: 0 auto;
    display: block;
}
.footer-2025 .f-logo-text img {
    width: 200px;
    display: block;
    margin: 0 auto;
}
.footer-2025 .f-text {
    color: #fff;
    font-size: 14px;
    text-align: justify;
    max-width: 255px;
    margin: 0 auto;
}
.footer-2025 .f-social-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-2025 .f-social-item {
  color: #fff;
    background: linear-gradient(45deg, var(--o2), var(--o1));
    border-radius: 100%;
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid;
}
.footer-2025 .f-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}
.footer-2025 .linkish .f-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 6px 0;
    cursor: pointer;
    transition: all .3s ease;
}
.footer-2025 .f-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 6px 0;
    cursor: default;
    transition: all .3s ease;
}
.footer-2025 .f-link-item .fli-icon i {
    background: linear-gradient(45deg, var(--b2), var(--b1));
    border-radius: 8px;
    width: 30px;
    height: 30px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    border: 2px solid;
    align-items: center;
    transition: all .3s ease;
}
.footer-2025 .linkish .f-link-item:hover .fli-icon i{
    border-radius: 100px;
    transition: all .3s ease;
}
.footer-2025 .linkish .f-link-item .fli-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(45deg, var(--b2), var(--b1));
    transition: width 0.3s ease;
}
.footer-2025 .fli-text {
    font-size: 18px;
    font-weight: 500;
    transition: all .3s ease;
    position: relative;
}
.footer-2025 .linkish .f-link-item:hover .fli-text::after {
    width: 100%;
}
.footer-2025 .f-bottom {
    background: linear-gradient(180deg, var(--b1), var(--b2));
    border-top: 3px solid #fff;
    height: 70px;
}
.f-bottom-container{
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 2fr 1fr;
    height: 100%;
    justify-content: center;
    justify-items: center;
}
.footer-2025 .fb-col {
    color: #fff;
    font-size: 16px;
}
.footer-2025 .fb-col a {
  color: #fff;
  font-weight: 400;
}
.footer-2025 .fb-col.policy a:hover {
  color: #fff;
  font-weight: 400;
  text-decoration: underline;
}
.footer-2025 .fb-col.policy{
    display: flex;
    gap: 8px;
}

@media (max-width: 992px){
    .footer-2025 .f-main {
        flex-direction: column;
        gap: 25px;
    }
    .footer-2025 .f-title {
        padding-left: calc((100vw - 310px) / 2);
    }
    .footer-2025 .f-list {
        padding-left: calc((100vw - 310px) / 2);
    }
    .footer-2025 .f-bottom {
        height: 250px;
    }
    .f-bottom-container{
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: flex-start;
        padding-top: 30px;
    }
}

/* FEEDBACK COLLECTOR */
.feedback-collector-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
    background: linear-gradient(45deg, var(--o2), var(--o1));
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    border: 3px solid;
    align-items: center;
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    box-shadow: 3px 2px 8px var(--o2);
    transition: all .3s ease;
    opacity: 0.9;
}
.feedback-collector-button:hover {
    border-radius: 12px;
}
.feedback-collector-container {
    display: none;
    position: fixed;
    z-index: 1000000;
    top: 50%;
    padding: 50px;
    left: 50%;
    width: 700px;
    border-radius: 12px;
    border: 3px solid var(--o1);
    background: #fff;
    transform: translate(-50%, -50%);
}
.feedback-collector-container.open {
    display: block;
}
.fff-close{
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 40px;
    cursor: pointer;
}
.form-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.form-heading i{
    font-size: 26px;
    background: linear-gradient(45deg, var(--o2), var(--o1));
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    border: 3px solid;
    align-items: center;
    border-radius: 100%;
    color: #fff;
    box-shadow: 3px 2px 8px var(--o1);
}
.form-heading p{
    margin-top: -10px;
}
.feedback-form .form-group {
    margin-bottom: 20px;
}
#feedback-form .fff-submit {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(45deg, var(--o2), var(--o1));
    display: flex;
    justify-content: center;
    border: 3px solid;
    align-items: center;
    border-radius: 12px;
    color: #fff;
    box-shadow: 3px 2px 8px var(--o1);
    text-align: center;
    margin: 20px auto 0;
    transition: all .3s ease;
}
#feedback-form .fff-submit:hover {
    border-radius: 60px;
}

@media (max-width: 768px){
    .feedback-collector-container {
        padding: 50px 20px;
        width: 92vw;
    }
    .feedback-collector-button {
        bottom: 70px;
        right: 10px;
        font-size: 20px;
        width: 55px;
        height: 55px;
    }
}