/* ===================================================================
   FOOTER - VERSION 1.0
=================================================================== */
.site-footer {
    position: relative;
    color: #ffffff;
    background: #111111;
    overflow: hidden;
}

/* FOOTER TOP & GRID */
.footer-top { padding: 70px 0 50px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-widget {
    display: flex;
    flex-direction: column;
}

/* FOOTER LOGO & ABOUT */
.footer-logo { display: inline-block; margin-bottom: 25px; }
.footer-logo img { max-width: 180px; height: auto; }

.footer-about p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.9;
}

/* WIDGET TITLE */
.footer-widget h3 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--primary);
}

/* WIDGET LIST & LINKS */
.footer-widget ul { margin: 0; padding: 0; list-style: none; }
.footer-widget ul li { margin-bottom: 14px; }
.footer-widget ul li:last-child { margin-bottom: 0; }

.footer-widget ul li a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

/* SOCIAL MEDIA */
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; }

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-social i { font-size: 16px; }