/* Footer Styles */
.footer {
    background-color: #f7f7fe;
    padding: 80px 0 40px;
    margin-top: 140px;
}

.footer-top {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo .logo-text {

    font-weight: 600;
    font-size: 17px;
    color: #383d4c;
    letter-spacing: -0.25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 25% 25% 25% 20%;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {

    font-weight: 600;
    font-size: 17px;
    color: #383d4c;
    margin-bottom: 40px;
    border-bottom: 1px solid #284044;
    padding-bottom: 20px;
}

.footer-column-about .footer-title {
    display: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-links a {

    font-weight: 500;
    font-size: 17px;
    color: #383d4c;
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-column-about .footer-links a {

    font-weight: 600;
    font-size: 17px;
    color: #383d4c;
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.footer-phone,
.footer-email {

    font-weight: 600;
    font-size: 17px;
    color: #383d4c;
    text-decoration: none;
    letter-spacing: -0.25px;
    transition: opacity 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
    opacity: 0.8;
}

.footer-address {

    font-weight: 500;
    font-size: 14px;
    color: #383d4c;
    opacity: 0.6;
    letter-spacing: -0.14px;
    line-height: 21px;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-copyright {

    font-weight: 400;
    font-size: 14px;
    color: #383d4c;
    letter-spacing: -0.14px;
    margin: 0;
}

.footer-policy {

    font-weight: 400;
    font-size: 14px;
    color: #383d4c;
    opacity: 0.6;
    letter-spacing: -0.14px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-policy a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-policy a:hover {
    opacity: 0.8;
}

.footer-policy-link {
    color: #383d4c;
    opacity: 0.6;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-policy-link:hover {
    opacity: 0.8;
}

.footer-bottom-right {
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.footer-contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #383D4C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-circle:hover {
    border-color: #4a8cf0;
    transform: scale(1.05);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.feedback-btn {
    background-color: #4a8cf0;
    color: white;
    border: none;
    border-radius: 60px;

    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    padding-left: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 325px;
    text-decoration: none;
}

.feedback-btn:hover {
    background-color: #3a7bd8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 140, 240, 0.3);
}

.feedback-btn__icon {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.feedback-arrow {
    display: none;
}

.arrow-icon {
    display: none;
}

.scroll-to-top-floating {
    width: 50px;
    height: 50px;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-to-top-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-icon {
    width: 12px;
    height: 12px;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 30% 30% 20% 20%;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
        margin-top: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-bottom-right {
        width: 100%;
        justify-content: center;
    }

    .footer-contact-section {
        width: 100%;
        align-items: center;
    }

    .scroll-to-top-floating {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .feedback-btn {
        min-width: 180px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .scroll-to-top-floating {
        width: 40px;
        height: 40px;
    }

    .scroll-icon {
        width: 16px;
        height: 16px;
    }
}