/* =========================================================
   FOOTER
========================================================= */
.sekin-footer {
    background: linear-gradient(180deg, #071735 0%, #05122d 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}
.sekin-footer-grid {
    display: grid;
    grid-template-columns:
        1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 35px 0;
}
.sekin-footer-grid>* {
    position: relative;
}
.sekin-footer-grid>*:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25px;
    bottom: 25px;
    right: -20px;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.1),
            transparent);
}
.sekin-footer h3 {
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}
.sekin-footer a {
    color: rgba(255, 255, 255, 0.75);
    transition: 0.3s;
}
.sekin-footer a:hover {
    color: var(--sekin-orange);
}
.footer-logo img {
    width: 150px;
    height: auto;
}
.footer-company p {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.8;
}
.footer-social {
    display: flex;
    gap: 12px;
}
/* =========================================================
   SOCIAL
========================================================= */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.3s ease;
}
.footer-social a:hover {
    border-color: var(--sekin-orange);
    /*transform: translateY(-2px);*/
}
.sekin-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
/* =========================================================
   CONTACT
========================================================= */
.footer-contact {
    font-size: 14px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-contact-icon {
    flex-shrink: 0;
    width: 18px;
    color: var(--sekin-orange);
}
.footer-contact-icon svg {
    width: 18px;
    height: 18px;
}
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.75);
}
.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-menu li {
    margin: 0 !important;
    padding: 0 !important;
}
.footer-menu li+li {
    margin-top: 8px !important;
}
.footer-menu a {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}