/* ========================================================= */
/* FOOTER                                                     */
/* ========================================================= */
.mkmct-footer {
    background-color: var(--bg-footer);
    color: #fff;
    margin-top: 0;
}
.footer-top {
    padding: 3.5rem 0 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-block {
    margin-bottom: 1.25rem;
}
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}
.footer-logo-icon {
    width: 54px;
    height: 54px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.footer-hindi-text {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.footer-sub-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}
.footer-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0 0 1.25rem 0;
}
.footer-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
}
.footer-col-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-links-list a:hover {
    color: var(--primary);
}
.footer-contact-p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}
.footer-contact-p-2 {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}
.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.footer-contact-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-contact-links a:hover {
    color: var(--primary);
}
.footer-social-block {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.footer-social-icon {
    background: #3b5998;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-social-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-playstore {
    display: inline-block;
}
.footer-playstore img {
    width: 160px;
    height: auto;
    border-radius: 6px;
}
.footer-bottom {
    padding: 1.25rem 0;
    background: rgba(0,0,0,0.2);
}
.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    margin: 0;
}
.footer-bottom p a {
    color: var(--primary);
    text-decoration: none;
}
.footer-bottom-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover {
    color: var(--primary);
}
.footer-bottom-divider {
    color: rgba(255,255,255,0.3);
}

/* Floating Call Button - Mobile Only */
#float-call-btn {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
    animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
    0%   { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(234, 88, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}
