/**
 * Mobile Menu Footer Design
 */

.vt-menu-footer {
    padding: 30px 20px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 2px solid #e9ecef;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Contact Information */
.vt-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vt-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vt-contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 98, 51, 0.15);
}

.vt-contact-icon {
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #006233, #007a3d);
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 14px !important;
    flex-shrink: 0;
}

.vt-contact-item span {
    color: #2d3748;
    font-weight: 500;
    flex: 1;
}

/* Social Links */
.vt-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.vt-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    color: #4a5568;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vt-social-link:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Social brand colors on hover */
.vt-social-link:hover {
    color: #ffffff;
}

.vt-social-link[aria-label="Facebook"]:hover {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.vt-social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.vt-social-link[aria-label="Twitter"]:hover {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.vt-social-link[aria-label="WhatsApp"]:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Icon fixes */
.vt-social-link i {
    font-size: 18px !important;
    display: inline-block;
}

.vt-contact-icon:before,
.vt-social-link i:before {
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .vt-menu-footer {
        padding: 25px 15px 15px;
        gap: 20px;
    }
    
    .vt-contact-info {
        gap: 12px;
    }
    
    .vt-contact-item {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .vt-contact-icon {
        width: 28px;
        height: 28px;
        font-size: 12px !important;
        border-radius: 6px;
    }
    
    .vt-social-links {
        gap: 8px;
        padding-top: 12px;
    }
    
    .vt-social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .vt-menu-footer {
        padding: 20px 12px 12px;
    }
    
    .vt-contact-item {
        font-size: 12px;
        padding: 5px 8px;
        gap: 10px;
    }
    
    .vt-contact-icon {
        width: 26px;
        height: 26px;
        font-size: 11px !important;
    }
    
    .vt-social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .vt-contact-item span {
        font-size: 12px;
    }
}

/* Dark mode variant for mobile menu */
.xb-header-menu .vt-menu-footer,
.vt-modern-navigation .vt-menu-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.xb-header-menu .vt-contact-item,
.vt-modern-navigation .vt-contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.xb-header-menu .vt-contact-item span,
.vt-modern-navigation .vt-contact-item span {
    color: #e2e8f0;
}

.xb-header-menu .vt-social-links,
.vt-modern-navigation .vt-social-links {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.xb-header-menu .vt-social-link,
.vt-modern-navigation .vt-social-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

/* Animation on menu open */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vt-menu-footer {
    animation: slideInUp 0.5s ease-out 0.3s both;
}

.vt-contact-item {
    animation: slideInUp 0.5s ease-out 0.4s both;
}

.vt-contact-item:nth-child(2) {
    animation-delay: 0.5s;
}

.vt-contact-item:nth-child(3) {
    animation-delay: 0.6s;
}

.vt-social-link {
    animation: slideInUp 0.5s ease-out 0.7s both;
}

.vt-social-link:nth-child(2) {
    animation-delay: 0.75s;
}

.vt-social-link:nth-child(3) {
    animation-delay: 0.8s;
}

.vt-social-link:nth-child(4) {
    animation-delay: 0.85s;
}