/* Standardized Footer CSS for VIP Web */
:root {
    --vip-navy: #002147;
    --vip-blue: #2563eb;
    --vip-gray: #94a3b8;
    --vip-light: #f8fafc;
}

/* Reset to ensure no gaps around the footer */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
}

.vip-footer {
    background-color: var(--vip-navy);
    color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
    width: 100% !important;
    margin: 0 !important;
}

.vip-footer-bg-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    filter: blur(64px);
    margin-right: -5rem;
    margin-top: -5rem;
    pointer-events: none;
}

.vip-footer .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}

.vip-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    /* Increased from 3rem to 5rem for more air */
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .vip-footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6rem;
        /* Even more space on large screens */
    }
}

/* Logo alignment with headings */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 2rem;
    margin-left: -5px;
    /* Shifted left for better balance */
    margin-top: -0.65rem;
    /* Adjusted for perfect vertical alignment with heading text */
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.02);
}

.vip-footer h4 {
    font-weight: 700;
    font-size: 1.15rem;
    /* Slightly larger heading for premium feel */
    margin-bottom: 1.5rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    display: inline-block;
    padding-bottom: 0.5rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    /* More formal/premium */
}

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

.vip-footer .space-y-3 li {
    margin-bottom: 0.75rem;
}

.vip-footer .space-y-4 li {
    margin-bottom: 1rem;
}

.vip-footer a {
    color: var(--vip-gray);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.vip-footer a:hover {
    color: var(--vip-blue);
    padding-left: 0.5rem;
}

.vip-footer p {
    color: var(--vip-gray);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Contact Info Styles */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    background-color: rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--vip-blue);
    transition: background-color 0.3s, color 0.3s;
}

.footer-contact-item:hover .footer-contact-icon {
    background-color: var(--vip-blue);
    color: #ffffff;
}

.footer-contact-item span,
.footer-contact-item a {
    color: var(--vip-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: #ffffff;
    padding-left: 0;
}

.footer-contact-item a.font-semibold {
    font-weight: 600;
}

/* Social Media integration */
.vip-footer .footer-social-vip {
    margin-top: 1rem;
}