/* =======================================================
   XaaS Footer — Enterprise v4.1
   4 columns + centered social row (no markup changes)
======================================================= */

.xaas-footer {
    background: #0f172a;
    padding: 80px 0 0;
    color: #cbd5e1;
    position: relative;
}

/* -----------------------------
   GRID: 4 Equal Columns
------------------------------ */
.xaas-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.xaas-footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.xaas-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.xaas-footer-col ul li {
    margin-bottom: 10px;
}

.xaas-footer-col ul li a {
    color: #cbd5e1;
    font-size: 15px;
    text-decoration: none;
    transition: 0.25s ease;
}

.xaas-footer-col ul li a:hover {
    color: #38bdf8;
}

/* -----------------------------
   REMOVE SOCIAL FROM COLUMN 1
------------------------------ */
.xaas-footer-social {
    display: none !important;
}

/* -----------------------------
   NEW — SOCIAL ROW (Centered)
------------------------------ */
.xaas-footer-social-row {
    width: 100%;
    text-align: center;
    margin: 40px 0 20px;
}

.xaas-footer-social-row .social-icons {
    display: inline-flex;
    gap: 22px;
}

.xaas-footer-social-row .social-icons a {
    color: #cbd5e1;
    font-size: 22px;
    transition: 0.25s ease;
}

.xaas-footer-social-row .social-icons a:hover {
    color: #38bdf8;
    transform: scale(1.15);
}

/* -----------------------------
   BOTTOM COPYRIGHT ROW
------------------------------ */
.xaas-footer-bottom {
    text-align: center;
    padding: 26px 0 40px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.xaas-footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* -----------------------------
   RESPONSIVE BREAKPOINTS
------------------------------ */
@media (max-width: 1024px) {
    .xaas-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .xaas-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .xaas-footer-bottom p {
        font-size: 13px;
    }
}
