/* Footer - Start */
footer {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
	margin-top: var(--header-height);
	padding: 60px 0 15px 0;
	background: var(--black);
	overflow: hidden;
}
footer .container {
    position: relative;
}
.footer-info {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-footer {
    margin-bottom: 30px;
}
.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 310px;
}
.footer-head {
    color: var(--white);
    margin-bottom: 30px;
}
.menu-footer-wrapper .menu-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}
.menu-footer-wrapper .menu-footer li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
}
.menu-footer-wrapper .menu-footer li a:hover {
    color: var(--white);
}

.btn-group-footer {
    margin-bottom: 10px;
}
footer .contact-item {
    margin-bottom: 10px;
}
footer .contact-item-head {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
}
footer .contact-link {
    display: block;
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}
footer .contact-link:last-child {
    margin-bottom: 0;
}
footer .contact-link:hover {
    color: var(--gray);
}
footer .contact-item-icon {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
footer .contact-item-icon .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
}
footer .contact-item-icon .contact-icon img {
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
    object-fit: contain;
}
footer .contact-item-icon p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}
footer .social-box {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
footer .social-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}
footer .social-box a:hover {
    background: var(--gray);
}
footer .social-box .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .social-box .contact-icon img {
    filter: brightness(0) invert(1);
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.copyright {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.4;
}
.copiright-payment {
    display: flex;
    align-items: center;
    gap: 15px;
}
.icon-design-by {
    filter: invert(1);
}

@media (max-width: 1480px) {
	footer {
		padding: 40px 0 15px 0;
	}
    .footer-info {
        padding-bottom: 40px;
    }
    .logo-footer {
        margin-bottom: 25px;
    }
    .footer-head {
        margin-bottom: 25px;
    }
    .btn-group-footer {
        margin-bottom: 25px;
    }
    footer .social-box {
        margin-top: 25px;
    }
}

@media (max-width: 1279px) {
    footer {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .footer-info {
        padding-bottom: 30px;
    }
    .footer-info .col-25 {
        width: calc(50% - var(--blocks-indent) / 2);
        margin-bottom: 30px;
    }
    .logo-footer {
        margin-bottom: 20px;
    }
    .footer-head {
        margin-bottom: 20px;
    }
    .btn-group-footer {
        margin-bottom: 20px;
    }
    footer .social-box {
        margin-top: 20px;
    }
    .copyright {
        padding-top: 20px;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    footer {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .footer-info {
        padding-bottom: 20px;
    }
    .footer-info .col-25 {
        width: 100%;
        margin-bottom: 30px;
    }
    .footer-info .col-25:last-child {
        margin-bottom: 0;
    }
    .footer-desc {
        max-width: 100%;
    }
    footer .contact-item {
        margin-bottom: 15px;
    }
    footer .contact-link {
        font-size: 15px;
    }
    footer .social-box {
        gap: 10px;
    }
    footer .social-box a {
        width: 36px;
        height: 36px;
    }
    .copiright-payment {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .copiright-payment .copyright-text.mob {
        display: block;
    }
    .copyright-design-by {
        margin-top: 10px;
    }
}
/* Footer - End */