/* DateMetriX Footer Enhancements */

/* Modern footer design for DateMetriX */
.site-datemetrix .footer3,
.site-datemetrix footer {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-top: 1px solid rgba(106, 27, 154, 0.1);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

/* Add subtle pattern overlay */
.site-datemetrix .footer3::before,
.site-datemetrix footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(106, 27, 154, 0.03) 35px, rgba(106, 27, 154, 0.03) 70px);
    pointer-events: none;
}

/* Footer social icons - DateMetriX style */
.site-datemetrix .footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.site-datemetrix .footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    color: #6a1b9a;
    box-shadow: 0 2px 8px rgba(106, 27, 154, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.site-datemetrix .footer-social-icons a:hover {
    background: #6a1b9a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.25);
}

/* Footer links styling */
.site-datemetrix .footer-link,
.site-datemetrix .footer-link-large {
    color: #6a1b9a;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.site-datemetrix .footer-link:hover,
.site-datemetrix .footer-link-large:hover {
    color: #9c4dcc;
}

.site-datemetrix .footer-link-large {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Footer headings */
.site-datemetrix .footer3 h3,
.site-datemetrix .footer3 h4 {
    color: #4a148c;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer text */
.site-datemetrix .footer-text {
    color: #5a5a5a;
    line-height: 1.6;
}

/* Platform links section */
.site-datemetrix .platform-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-datemetrix .platform-links li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.site-datemetrix .platform-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #9c4dcc;
    font-weight: bold;
}

/* Footer columns */
.site-datemetrix .footer-column {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Footer address */
.site-datemetrix .footer-address {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(106, 27, 154, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-datemetrix .footer3,
    .site-datemetrix footer {
        padding: 2rem 0 1.5rem;
        margin-top: 2rem;
    }
    
    .site-datemetrix .footer-column {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .site-datemetrix .footer-social-icons {
        gap: 1rem;
    }
    
    .site-datemetrix .footer-social-icons a {
        width: 40px;
        height: 40px;
    }
}

/* Copyright section enhancement */
.site-datemetrix .footer3 strong {
    color: #4a148c;
}

/* Platform icons in footer */
.site-datemetrix .platform-links .fas,
.site-datemetrix .platform-links .fab {
    color: #9c4dcc;
    width: 20px;
    text-align: center;
}

/* Footer bottom border */
.site-datemetrix .footer3 .border-top {
    border-color: rgba(106, 27, 154, 0.1) !important;
}

/* DateMetriX specific hover effects */
.site-datemetrix .footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #9c4dcc;
    transition: width 0.3s ease;
}

.site-datemetrix .footer-link:hover::after {
    width: 100%;
}

/* Footer background gradient for DateMetriX */
.site-datemetrix .footer3 {
    background: linear-gradient(135deg, #f8f6fa 0%, #ebe7ef 100%);
}

/* Add subtle animation to social icons */
@keyframes social-pulse {
    0% {
        box-shadow: 0 2px 8px rgba(106, 27, 154, 0.15);
    }
    50% {
        box-shadow: 0 2px 12px rgba(106, 27, 154, 0.25);
    }
    100% {
        box-shadow: 0 2px 8px rgba(106, 27, 154, 0.15);
    }
}

.site-datemetrix .footer-social-icons a:hover {
    animation: social-pulse 0.6s ease-in-out;
}