/* ========================================
   FOOTER
   ======================================== */

.footer {
    position: relative;
    background: #050505;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 168, 41, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top-line {
    height: 3px;
    background: linear-gradient(
        to right,
        var(--color-Primary2) 0%,
        var(--color-Primary2) 20%,
        transparent 20%,
        transparent 22%,
        var(--color-Primary2) 22%,
        var(--color-Primary2) 30%,
        transparent 30%
    );
    opacity: 0.5;
}

/* ---- main area ---- */
.footer-main {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 45px;
}

/* ---- brand column ---- */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
    max-width: 320px;
}

/* social buttons */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
    transition: all 0.4s ease;
    text-decoration: none !important;
}

.footer-social-btn:hover {
    transform: translateY(-3px);
}

.footer-social-yt:hover {
    background: rgba(255, 0, 0, 0.12);
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.3);
}

.footer-social-tt:hover {
    background: rgba(0, 242, 234, 0.1);
    color: #00f2ea;
    border-color: rgba(0, 242, 234, 0.3);
}

.footer-social-ig:hover {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.3);
}

.footer-social-fb:hover {
    background: rgba(24, 119, 242, 0.12);
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.3);
}

/* ---- column heading ---- */
.footer-heading {
    font-family: "font_semibold";
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--color-Primary2);
}

/* ---- links list ---- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none !important;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--color-Primary2);
    transition: width 0.3s ease;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
}

.footer-links li a:hover {
    color: var(--color-Primary2);
    padding-left: 14px;
}

.footer-links li a:hover::before {
    width: 10px;
    margin-right: 4px;
}

/* ---- contact list ---- */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact li i {
    color: var(--color-Primary2);
    font-size: 14px;
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
    text-align: center;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--color-Primary2);
}

/* ---- bottom bar ---- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-credit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-credit a {
    color: var(--color-Primary2);
    font-size: 14px;
    text-decoration: none !important;
    transition: opacity 0.3s ease;
}

.footer-credit a:hover {
    opacity: 0.8;
}
