/* Enterprise Footer Styles */
.enterprise-footer {
    /*background: linear-gradient(135deg, #2c3e50, #34495e);*/
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px 0 10px;
    margin-top: 20px;
    /*border-radius: 0 0 20px 20px;*/
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    min-width: 80px;
}

.footer-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.footer-btn i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.footer-btn span {
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-copyright {
    padding-top: 10px;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.8;
    color: #ecf0f1;
}

/* Mobile-specific footer optimizations */
@media (max-width: 480px) {
    .enterprise-footer {
        padding: 15px 0 8px;
        margin-top: 15px;
    }

    .footer-nav {
        gap: 20px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .footer-btn {
        padding: 8px 12px;
        min-width: 70px;
    }

    .footer-btn i {
        font-size: 1.1rem;
    }

    .footer-btn span {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .footer-nav {
        gap: 15px;
    }

    .footer-btn {
        padding: 6px 10px;
        min-width: 65px;
    }
}

/* Footer Language Selector Styles */
.footer-language-selector {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-selector-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 15px;
    min-width: 180px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector-wrapper:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-selector-wrapper i:first-child {
    color: var(--primary-color, #ff6b93);
    margin-right: 10px;
    font-size: 1.1rem;
}

.footer-language-dropdown {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 5px 30px 5px 10px;
    width: 100%;
    cursor: pointer;
    appearance: none;
    outline: none;
}

.footer-language-dropdown option {
    background: #2a2a2a;
    color: white;
    padding: 10px;
}

.dropdown-arrow {
    position: absolute;
    right: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    pointer-events: none;
}

/* For RTL languages */
html[dir="rtl"] .language-selector-wrapper i:first-child {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .dropdown-arrow {
    right: auto;
    left: 12px;
}

html[dir="rtl"] .footer-language-dropdown {
    padding: 5px 10px 5px 30px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .language-selector-wrapper {
        min-width: 160px;
        padding: 6px 12px;
    }

    .footer-language-dropdown {
        font-size: 0.85rem;
    }
}
