/* Vidyaan — Modern Footer */
.v-footer {
    background: linear-gradient(180deg, #0f2440 0%, #1a3a5c 100%);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Plus Jakarta Sans', 'Muli', sans-serif;
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}
.v-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff8d2b, #ffb347, #ff8d2b);
}
.v-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.v-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none !important;
    margin-bottom: 20px;
}
.v-footer-logo img {
    height: 42px;
    width: auto;
    background: #fff;
    padding: 6px 10px;
    border-radius: 8px;
}
.v-footer-r {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -14px;
}
.v-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 320px;
}
.v-footer-col h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 20px;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 12px;
}
.v-footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    background: #ff8d2b;
    border-radius: 2px;
}
.v-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v-footer-links li {
    margin-bottom: 10px;
}
.v-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}
.v-footer-links a:hover {
    color: #ff8d2b;
    padding-left: 4px;
}
.v-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    margin-bottom: 14px;
    transition: color 0.2s;
}
.v-footer-contact-item:hover {
    color: #ff8d2b;
}
.v-footer-contact-item i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ff8d2b;
}
.v-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.v-footer-copyright {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}
.v-footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.v-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.v-footer-social a:hover {
    background: #ff8d2b;
    color: #fff;
    transform: translateY(-2px);
}

/* Floating contact buttons */
.v-floating-actions {
    position: fixed;
    right: 16px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v-float-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s, box-shadow 0.2s;
}
.v-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.v-float-btn--phone {
    background: #fff;
    color: #1a3a5c;
    border: 2px solid #1a3a5c;
}
.v-float-btn--whatsapp {
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
}

@media (max-width: 991px) {
    .v-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px 32px;
    }
    .v-footer-brand {
        grid-column: 1 / -1;
    }
    .v-footer-desc {
        max-width: 100%;
    }
}
@media (max-width: 575px) {
    .v-footer {
        padding-top: 48px;
    }
    .v-footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }
    .v-footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    .v-footer-social {
        justify-content: center;
    }
    .v-floating-actions {
        right: 12px;
        bottom: 16px;
    }
    .v-float-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
