﻿:root {
    /* gradient colors */
    --footer-grad-1: #4b6fd1;
    --footer-grad-2: #3a57a3;
    --footer-grad-3: #2e447f;
    /* text colors */
    --footer-text: #cbd5e1;
    --footer-text-muted: #94a3b8;
    /* link color */
    --footer-link: white;
    --logo-bg: white;
}

/* default footer */
.site-footer {
    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08), transparent 40%), radial-gradient(circle at 80% 100%, rgba(0,0,0,0.18), transparent 45%), linear-gradient(180deg, var(--footer-grad-1) 0%, var(--footer-grad-2) 45%, var(--footer-grad-3) 100% );
    color: var(--footer-text);
    padding: 80px 0 44px;
    border-top: 1px solid rgba(255,255,255,.08);
    position: relative;
}

    .site-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(255,255,255,.03), rgba(0,0,0,.05));
        pointer-events: none;
    }

.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
}

.site-footer__cols {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    justify-items: center;
    text-align: left;
}

.site-footer__title {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .site-footer__list li {
        margin: 8px 0;
    }

.tp-footer a,
.site-footer a {
    color: var(--footer-text);
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

    .tp-footer a:hover,
    .site-footer a:hover {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

.site-footer__about {
    margin: 40px auto 0;
    max-width: 900px;
    line-height: 1.65;
    color: #e2e8f0;
    text-align: center;
}

.site-footer__meta {
    margin-top: 14px;
    font-size: 13px;
    color: var(--footer-text-muted);
    text-align: center;
}

/* Profile footer layout */
.tp-footer {
    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08), transparent 40%), radial-gradient(circle at 80% 100%, rgba(0,0,0,0.18), transparent 45%), linear-gradient( 180deg, var(--footer-grad-1) 0%, var(--footer-grad-2) 45%, var(--footer-grad-3) 100% );
    color: var(--footer-text);
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.tp-profile-seoH2 {
    margin: 0 0 14px 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

/* footer container */

.tp-footer__inner {
    max-width: 1100px;
    margin: auto;
    padding: 30px 18px 32px;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 40px;
}
@media (max-width:860px) {

    .tp-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tp-footer__badge {
        order: -1;
    }
}

/* brand */
.tp-footer__brand {
    margin-bottom: 12px;
}

.tp-footer__brandName {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.tp-footer__brandMeta {
    font-size: 13px;
    color: var(--footer-text-muted);
}

/* Badge */
.tp-footer__badge {
    display: flex;
    align-items: center; 
    justify-content: center;
}

    .tp-footer__badge img {
        max-width: 180px;
        height: auto;
    }


/* navigation */

.tp-footer__links {
    list-style: none;
    padding: 0;
    margin: 18px 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .tp-footer__links li {
        margin: 0;
        background: rgba(255,255,255,0.08);
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.15);
    }

    .tp-footer__links a {
        font-size: 14px;
        padding: 6px 10px;
        border-radius: 6px;
        color: var(--footer-link);
        text-decoration: none;
    }

        .tp-footer__links a:hover {
            background: rgba(0,0,0,0.25);
            color: #fff;
        }


/* context text */

.tp-footer__context {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

    .tp-footer__context p {
        margin: 0 0 10px;
        line-height: 1.6;
        font-size: 14px;
    }


/* call text */

.tp-footer__call {
    color: var(--footer-text);
}

.tp-footer__phone {
    color: #ffffff;
    font-weight: 700;
}


/* bottom meta */

.tp-footer__meta {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.08);
    font-size: 13px;
    color: var(--footer-text-muted);
}

    .tp-footer__meta a {
        color: var(--footer-link);
    }
/* Logo */

.site-footer-wrapper {
    position: relative;
    margin-top: 80px;
}

.site-footer__logo {
    position: absolute;
    left: 50%;
    top: -45px;
    transform: translateX(-50%);
    background: var(--logo-bg);
    padding: 12px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    z-index: 5;
}

    .site-footer__logo img {
        height: 64px;
        width: auto;
    }
