/* ===== Modern Footer ===== */

html {
min-height: 100%;
position: relative;
}

body {
margin: 0;
margin-bottom: 180px;
}

.footer-distributed {
position: absolute;
bottom: 0;
background: linear-gradient(135deg, #11131a 0%, #1a1d27 100%);
width: 100%;
box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
box-sizing: border-box;
text-align: left;
font: 15px 'Inter', sans-serif;
padding: 20px 50px;
border-top: 3px solid var(--mp-accent);
display: flex;
align-items: center;
justify-content: space-between;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
display: inline-block;
vertical-align: top;
}

.footer-distributed .footer-left {
width: auto;
}

.footer-distributed h3 {
color: #fff;
font: normal 36px 'Poppins', sans-serif;
margin: 0;
}

.footer-distributed h3 span {
color: var(--mp-accent);
}

.footer-distributed .footer-links {
color: var(--mp-text);
margin: 0;
padding: 0;
font-size: 14px;
}

.footer-distributed .footer-links a {
display: inline-block;
line-height: 1.8;
text-decoration: none;
color: var(--mp-accent);
transition: var(--mp-transition);
}

.footer-distributed .footer-links a:hover {
color: var(--mp-accent-hover);
}

.footer-distributed .footer-company-name {
color: var(--mp-text-dim);
font-size: 14px;
font-weight: normal;
margin: 0;
}

.footer-distributed .footer-center {
width: 35%;
}

.footer-distributed .footer-center i {
background-color: var(--mp-accent);
color: #fff;
font-size: 25px;
width: 38px;
height: 38px;
border-radius: 50%;
text-align: center;
line-height: 42px;
margin: 10px 15px;
vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
font-size: 17px;
line-height: 38px;
}

.footer-distributed .footer-center p {
display: inline-block;
color: #fff;
vertical-align: middle;
margin: 0;
}

.footer-distributed .footer-center p span {
display: block;
font-weight: normal;
font-size: 14px;
line-height: 2;
}

.footer-distributed .footer-center p a {
color: var(--mp-accent);
text-decoration: none;
}

.footer-distributed .footer-right {
float: right;
}

.footer-distributed .footer-company-about {
line-height: 20px;
color: var(--mp-text-dim);
font-size: 13px;
font-weight: normal;
margin: 0;
}

.footer-distributed .footer-company-about span {
display: block;
color: #fff;
font-size: 14px;
font-weight: bold;
margin-bottom: 20px;
}

.footer-distributed .footer-icons {
margin-top: 15px;
display: flex;
gap: 6px;
}

.footer-distributed .footer-icons a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
cursor: pointer;
border-radius: 8px;
font-size: 18px;
color: var(--mp-text);
text-align: center;
line-height: 38px;
background: var(--mp-surface2);
transition: var(--mp-transition);
}

.footer-distributed .footer-icons a:hover {
background: var(--mp-accent);
color: #fff;
transform: translateY(-2px);
}

.footer-distributed .footer-icons a i {
transition: all 200ms linear 0s;
}

.footer-distributed .footer-icons a:hover .fa-youtube { color: #fff; }
.footer-distributed .footer-icons a:hover .fa-facebook-f { color: #fff; }
.footer-distributed .footer-icons a:hover .fa-github { color: #fff; }
.footer-distributed .footer-icons a:hover .fa-linkedin { color: #fff; }
.footer-distributed .footer-icons a:hover .fa-twitter { color: #fff; }

/* ===== Mobile Footer ===== */
@media (max-width: 880px) {
.footer-distributed {
font-size: 14px;
display: flex;
flex-direction: column;
gap: 12px;
padding: 16px 20px;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
width: 100%;
margin-bottom: 0;
text-align: center;
}
.footer-distributed .footer-center i {
margin-left: 0;
}
}
