body {
   
    padding-bottom: 0px;
   
}
.main-footer {
    background: #535353;
    color: #fff;
    padding: 60px 0 0;
    margin-top: 60px;
    font-family: 'Segoe UI','Poppins',sans-serif
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    margin-bottom: 50px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: url('/logo.png') center/contain no-repeat;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px
}

.footer-social {
    display: flex;
    gap: 12px
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease
}

.social-icon:hover {
    background: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    transform: translateY(-3px)
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg,#667eea 0%,#764ba2 100%)
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 12px
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px
}

.footer-links a i {
    font-size: 10px;
    transition: all 0.3s ease
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px)
}

.footer-links a:hover i {
    transform: translateX(3px)
}

.footer-contact {
    list-style: none;
    padding: 0
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 14px
}

.footer-contact li i {
    color: #667eea;
    margin-top: 3px;
    font-size: 14px
}

.footer-contact li span {
    flex: 1;
    line-height: 1.5
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px
}

.footer-copyright {
    color: #888;
    font-size: 13px
}

.footer-bottom-links {
    display: flex;
    gap: 25px
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease
}

.footer-bottom-links a:hover {
    color: #667eea
}

@media (max-width: 992px) {
  

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 30px
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding:0 20px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .footer-bottom-links {
        justify-content: center
    }
}

@media (max-width: 480px) {
    

    .main-footer {
        padding: 40px 0 0
    }

    .footer-title {
        font-size: 16px
    }

    .footer-description {
        font-size: 13px
    }
}
