/* CSS Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0A2845;
    --accent: #AF4D58;
    --orange: #D68F41;
    --cream: #F4EFE9;
    --header-bg: #eaeaea;
    --pure-white: #FFFFFF;
    --grey: #666666;
    --gradient-1: linear-gradient(135deg, #0A2845 0%, #AF4D58 100%);
    --gradient-2: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    --gradient-3: linear-gradient(135deg, #0A2845 0%, #AF4D58 50%, #D68F41 100%);
    --gradient-soft: linear-gradient(135deg, rgba(10, 40, 69, 0.05) 0%, rgba(175, 77, 88, 0.05) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--primary);
    overflow-x: hidden;
    position: relative;
}

 /* Cursor Trail Effect - Hide on mobile */
 .vd-footer-cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(175, 77, 88, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all 0.1s ease;
    display: none;
}

@media (min-width: 1024px) {
    .vd-footer-cursor-trail {
        display: block;
    }
}

/* Noise Texture */
.vd-footer-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.02;
    z-index: 1;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIxMCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMSIvPjwvc3ZnPg==');
}

/* Sections */
.vd-footer-section {
    padding: 80px 0;
}

.vd-footer-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.vd-footer-section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.vd-footer-section-title p {
    font-size: 18px;
    color: var(--grey);
}


/* Footer - CSS */

 .vd-footer {
    background: var(--header-bg);
    padding: 80px 60px 40px;
    color: var(--primary);
}

.vd-footer-content {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.vd-footer-brand img {
    height: 100px;
    margin-bottom: 30px;
}

.vd-footer-brand p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 40px;
}

.vd-footer-social {
    display: flex;
    gap: 20px;
}

.vd-footer-social-link {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--primary);
    border-radius: 50%;
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: relative !important;
}

.vd-footer-social-link:hover {
    background: var(--gradient-2);
    border-color: transparent;
    color: var(--pure-white);
    transform: translateY(-5px);
}

.vd-footer-column h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--accent);
}

.vd-footer-links {
    list-style: none;
}

.vd-footer-links li {
    margin-bottom: 20px;
}

.vd-footer-links a {
    color: var(--primary);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.vd-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.vd-footer-links a:hover::after {
    width: 100%;
}

.vd-footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.vd-footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px;
}


/* =====================================================
FOOTER SECTION
===================================================== */
/* Tablet Styles (max-width: 1024px) */
@media (max-width: 1024px) {
    .vd-footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    }
    }
    /* Mobile Styles (max-width: 768px) */
    @media (max-width: 768px) {
    .vd-footer {
    padding: 60px 20px 30px;
    }
    .vd-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .vd-footer-social {
        justify-content: center;
    }
    
    .vd-footer-brand img {
        height: 80px;
        margin-bottom: 20px;
    }
    
    .vd-footer-brand p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .vd-footer-column h4 {
        margin-bottom: 20px;
    }
    
    .vd-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    }

/* Nexilra Credit Styling */
.footer-credit {
    background: linear-gradient(90deg, #FF6B35 0%, #138808 33%, #0066CC 66%, #19AAED 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    display: inline-block;
    animation: gradientShift 10s ease infinite;
    background-size: 300% 300%;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}