.footer {
    background-color: var(--main-color);
    color: white;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-brand h2 {
    font-size: 28px;
    margin-bottom: 20px !important;
    color: white;
}

.logo-circle {
    background-color: #c6ff00;
    border-radius: 50%;
    padding: 4px 10px;
    color: #000;
    margin-right: 5px;
}

.dot {
    color: #fff;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 180px;
    min-width: 150px;
}

.footer-col h4 {
    font-size: 24px;
    margin-bottom: 15px !important;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px !important;
    font-size: 14px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.footer-col.contact i {
    margin-right: 0;
    width: 18px;
    display: inline-block;
}

.footer-col.subscribe p {
    font-size: 14px;
    margin-bottom: 10px !important;
}

.footer-col.subscribe form {
    display: flex;
    margin-bottom: 10px !important;
}

.footer-col.subscribe input {
    flex: 1;
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.footer-col.subscribe button {
    background: white;
    color: #7b4eff;
    padding: 8px 12px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.socials {
    margin-top: 10px;
}

.socials p {
    margin-bottom: 6px !important;
    font-weight: 500;
}

.socials a {
    color: white;
    font-size: 18px;
    margin-right: 10px;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.social-icons a {
    color: var(--white-color) !important;
    font-size: 20px;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 16px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 20px !important;
    }

    .footer-col {
        flex: 1 1 140px;
    }

    .footer-col h4 {
        font-size: 20px;
    }
}