/* FOOTER BASE */
.hms-footer {
    background: #0f172a;
    color: #cbd5f5;
    padding: 70px 0 20px;
}

/* CONTAINER */
.hms-footer .hms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* GRID */
.hms-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* BRAND */
.hms-footer-brand img {
    width: 50px;
    margin-bottom: 10px;
}

.hms-footer-brand h3 {
    color: #fff;
    margin-bottom: 10px;
}

.hms-footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hms-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.hms-social a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 8px;
    color: #cbd5f5;
    font-size: 16px;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.hms-social a i {
    display: inline-block;
    line-height: 1;
}

.hms-social a:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* HEADINGS */
.hms-footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

/* LINKS */
.hms-footer a {
    display: block;
    color: #cbd5f5;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.hms-footer a:hover {
    color: #fff;
}

/* BOTTOM */
.hms-footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #1e293b;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
}


@media (max-width: 768px) {
    .hms-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hms-footer-brand img {
        margin: 0 auto 10px;
    }
}

.hms-footer {
    border-top: 1px solid #1e293b;
}