/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= FOOTER ================= */
.veborra-footer {
    background: linear-gradient(180deg, #07124a 0%, #030a2d 100%);
    color: #ffffff;
    padding: 70px 0 25px;
    font-family: 'Inter', sans-serif;
}

/* ================= TOP BAR ================= */
.footer-top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 40px;
    align-items: center;
    padding-bottom: 35px;
    margin-bottom: 50px;
    border-bottom: none !important;

}

.footer-brand img {
    height: 40px;
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons a {
    color: #fff;
    font-size: 15px;
    margin-right: 10px;
    opacity: 0.8;
    transition: 0.3s;
    text-decoration: none;
        /* 👈 line remove */
}

.social-icons a:hover {
    color: #6d7cff;
    opacity: 1;
}

/* ================= CONTACT BOX (FIXED ALIGNMENT) ================= */
.footer-contact-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact-box i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d7cff;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-contact-box small {
    font-size: 11px;
    opacity: 0.7;
}


.footer-top {
    padding-bottom: 5px;
    margin-bottom: 1px;
}

.footer-line {
    margin-top: 0;
}


.footer-link {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.footer-link:hover {
    color: #6d7cff;
}

/* ================= GRID ================= */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: flex-start;
    /* IMPORTANT FIX */
}

.footer-col {
    padding-top: 0;
}

.footer-col h5 {
    font-size: 15px;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h5::after {
    content: "";
    width: 26px;
    height: 2px;
    background: #6d7cff;
    position: absolute;
    left: 0;
    bottom: -6px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 16px;
}

/* ================= LIST ALIGNMENT FIX ================= */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.footer-col ul li::before {
    content: "›";
    color: #6d7cff;
    font-size: 16px;
    line-height: 1;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #6d7cff;
}

/* ================= BUTTON ================= */
.footer-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 8px 18px;
    border-radius: 20px;
    background:  #6a00ff;;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #6d7cff;
}

/* ================= NEWSLETTER ================= */
.footer-newsletter {
    display: flex;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    margin: 16px 0 14px;
}

.footer-newsletter input {
    border: none;
    padding: 10px 14px;
    width: 100%;
    font-size: 13px;
    outline: none;
}

.footer-newsletter button {
    background: linear-gradient(135deg, #4f6bff, #6a00ff);
    border: none;
    padding: 0 16px;
    color: #fff;
    cursor: pointer;
}

.footer-checkbox {
    font-size: 12px;
    opacity: 0.85;
}

.footer-checkbox a {
    color: #6d7cff;
    text-decoration: none;
}

/* ================= BOTTOM ================= */
.footer-bottom {
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-contact-box {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
}


