/* ============================================================
   SIXMOONS PREMIUM FOOTER (GLASS + BLUE-GOLD THEME)
=============================================================== */

.sm-footer {
    background: #ffffff;
    padding: 100px 0 35px;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Decorative circles */
.sm-footer::before,
.sm-footer::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: -1;
}

.sm-footer::before {
    width: 300px;
    height: 300px;
    left: -80px;
    top: -40px;
    background: rgba(0,86,209,0.15);
}

.sm-footer::after {
    width: 260px;
    height: 260px;
    right: -60px;
    bottom: -30px;
    background: rgba(242,180,27,0.22);
}

/* GRID — DESKTOP */
.sm-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    align-items: start; /* FIXES THE MISALIGN ISSUE */
}

/* Brand */
.sm-footer-brand {
    max-width: 320px;
    margin-top: -10px; /* Lifts brand column to align perfectly */
}


.sm-footer-logo {
    height: 70%;
    width: 70%;
    object-fit: contain;
    margin-bottom: 12px;
    background: transparent;
    box-shadow: none; /* remove the block effect */
    border-radius: 0; /* keep logo original shape */
}
/* Titles & Desc */
.sm-footer-title {
    font-size: 22px;
    font-weight: 800;
    color: #003c99;
}

.sm-footer-desc {
    margin-top: 10px;
    color: #6b7280;
    line-height: 1.7;
}

/* Social Icons */
.sm-footer-social {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.sm-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003c99;
    font-size: 18px;
    transition: 0.25s ease;
}

.sm-footer-social a:hover {
    background: #0056d1;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Links */
.sm-footer-links h4,
.sm-footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    color: #003c99;
    margin-bottom: 12px;
}

.sm-footer-links a {
    display: block;
    margin-bottom: 8px;
    color: #4a4a4a;
    font-size: 15px;
    transition: 0.25s ease;
}

.sm-footer-links a:hover {
    color: #0056d1;
    transform: translateX(6px);
}

/* Contact */
.sm-footer-contact p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #4a4a4a;
}

.sm-footer-contact i {
    color: #0056d1;
    margin-right: 8px;
}

/* COPYRIGHT */
.sm-footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.sm-footer-bottom .divider {
    margin: 0 6px;
    color: #b8b8b8;
}

/* RESPONSIVE — TABLET */
@media (max-width: 991px) {
    .sm-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        justify-items: center;
    }

    .sm-footer-brand {
        text-align: center;
        margin-top: 0;
    }

    .sm-footer-social {
        justify-content: center;
    }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 575px) {
    .sm-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}
