 /* Footer Container */
 .footer-container {
     position: relative;
     width: 100%;
     padding-top: 2rem;
     background: transparent;
     margin-top: auto;
     overflow-x: hidden;
 }

 .footer-content {
     margin: 0 auto;
     padding: 0 4rem;
     display: flex;
     flex-direction: column;
     gap: 2rem;
     width: 100%;
     box-sizing: border-box;
 }

 /* Footer Main Grid */
 .footer-main-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     width: 100%;
 }

 /* Footer Main Glass Container */
 .footer-main-glass {
     background: rgba(20, 20, 30, 0.6);
     backdrop-filter: blur(20px) saturate(180%);
     -webkit-backdrop-filter: blur(20px) saturate(180%);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 16px;
     padding: 3rem;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     width: 100%;
     box-sizing: border-box;
 }

 .footer-main-glass:hover {
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
 }

 /* Footer Info Section */
 .footer-logo-link {
     display: inline-block;
     line-height: 0;
     transition: transform 0.3s ease;
     margin-bottom: 1.5rem;
 }

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

 .footer-logo-image {
     height: 60px;
     width: auto;
     display: block;
 }

 .footer-description {
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 1.5rem;
 }

 .footer-social-icons {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     flex-wrap: wrap;
 }

 .footer-social-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     color: rgba(255, 255, 255, 0.8);
     border-radius: 10px;
     transition: all 0.3s ease;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     text-decoration: none;
     font-size: 1.2rem;
 }

.footer-social-icon:hover {
    color: #aaff00;
    background: rgba(170, 255, 0, 0.15);
    border-color: rgba(170, 255, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(170, 255, 0, 0.3);
}

/* Footer Human Badge */
.footer-human-badge {
    margin-top: 1.5rem;
    display: inline-block;
    position: relative;
    overflow: visible;
}

.footer-human-badge-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(170, 255, 0, 0.1);
    border: 1px solid rgba(170, 255, 0, 0.3);
    border-radius: 20px;
    color: #aaff00;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: help;
    position: relative;
    overflow: visible;
}

.footer-human-badge-label::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(170, 255, 0, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    max-width: 300px;
    min-width: 200px;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(170, 255, 0, 0.2);
}

.footer-human-badge-label::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(170, 255, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.footer-human-badge-label:hover::after {
    opacity: 1;
    visibility: visible;
}

.footer-human-badge-label:hover::before {
    opacity: 1;
    visibility: visible;
}

.footer-human-badge-label:hover {
    background: rgba(170, 255, 0, 0.2);
    border-color: rgba(170, 255, 0, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(170, 255, 0, 0.4),
                0 0 30px rgba(170, 255, 0, 0.2);
}

/* Footer Links Section */
 .footer-links-title,
 .footer-solutions-title,
 .footer-contact-title {
     color: rgba(255, 255, 255, 0.95);
     font-size: 1.25rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     position: relative;
     padding-bottom: 0.75rem;
 }

 .footer-links-title::after,
 .footer-solutions-title::after,
 .footer-contact-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 2px;
     background: linear-gradient(90deg, #aaff00, transparent);
 }

 .footer-links-list,
 .footer-solutions-list,
 .footer-contact-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links-list li,
 .footer-solutions-list li {
     margin-bottom: 0.75rem;
 }

 .footer-contact-list li {
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
 }

 .footer-contact-list li i {
     color: #aaff00;
     font-size: 1.1rem;
     width: 20px;
 }

 .footer-link {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 0.95rem;
     position: relative;
 }

 .footer-link:hover {
     color: #aaff00;
     text-shadow: 0 0 10px rgba(170, 255, 0, 0.5);
 }

 .footer-link::before {
     content: '';
     position: absolute;
     left: 0;
     bottom: -2px;
     width: 0;
     height: 1px;
     background: #aaff00;
     transition: width 0.3s ease;
 }

.footer-link:hover::before {
    width: 100%;
}

/* Footer Language Dropdown */
.footer-language-dropdown {
    max-width: 50%;
    position: relative;
    flex: 1;
    min-width: 0;
}

.footer-language-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: inherit;
}

.footer-language-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(170, 255, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.footer-language-button[aria-expanded="true"] {
    background: rgba(170, 255, 0, 0.1);
    border-color: rgba(170, 255, 0, 0.4);
    color: #aaff00;
}

.footer-language-button[aria-expanded="true"] .footer-language-arrow {
    transform: rotate(180deg);
    color: #aaff00;
}

.footer-language-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-language-arrow {
    transition: transform 0.3s ease, color 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.footer-language-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 0.5rem;
    list-style: none;
    padding: 0.35rem;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(170, 255, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    width: auto;
    min-width: 140px;
    max-width: 160px;
    box-sizing: border-box;
}

.footer-language-menu::-webkit-scrollbar {
    width: 6px;
}

.footer-language-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.footer-language-menu::-webkit-scrollbar-thumb {
    background: rgba(170, 255, 0, 0.3);
    border-radius: 10px;
}

.footer-language-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(170, 255, 0, 0.5);
}

.footer-language-dropdown.active .footer-language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 250px;
    overflow-y: auto;
}

.footer-language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.footer-language-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(170, 255, 0, 0.1);
    transition: width 0.3s ease;
}

.footer-language-option:hover {
    background: rgba(170, 255, 0, 0.1);
    color: #aaff00;
    transform: translateX(4px);
}

.footer-language-option:hover::before {
    width: 3px;
}

.footer-language-option.active {
    background: rgba(170, 255, 0, 0.15);
    color: #aaff00;
    font-weight: 600;
    width: 100%;
}

.footer-language-flag {
    display: inline-block;
    width: 16px;
    height: 12px;
    flex-shrink: 0;
    line-height: 1;
}

.footer-language-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-language-text {
    flex: 1;
}

/* Footer Copyright Section */
 .footer-copyright-section {
     width: 100%;
     margin-top: 2rem;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     text-align: center;
 }

 .footer-copyright-text {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.9rem;
     margin: 0;
 }

 .footer-copyright-text .footer-link {
     font-size: 0.9rem;
 }

 /* Footer Title Section */
 .footer-title-section {
     width: 100%;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: flex-end;
     justify-content: center;
     padding: 0;
     left: 0;
     right: 0;
     height: 300px;
     max-height: 300px;
     box-sizing: border-box;
 }

 .footer-title-text {
     font-size: 20rem;
     font-weight: 700;
     margin: 0;
     padding: 0;
     text-shadow: 0 0 20px rgba(170, 255, 0, 0.3);
     letter-spacing: 8px;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(170, 255, 0, 0.8) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     transition: all 0.3s ease;
     white-space: nowrap;
     text-align: center;
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     display: block;
     line-height: 1;
     clip-path: inset(0 0 40% 0);
     -webkit-clip-path: inset(0 0 40% 0);
     height: auto;
     max-width: 100vw;
     box-sizing: border-box;
     bottom: -10rem;
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .footer-content {
         padding: 0 1.5rem;
     }

     .footer-main-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 1.5rem;
     }

     .footer-main-glass {
         padding: 2.5rem;
         margin-bottom: 15px;
     }

     .footer-title-text {
         font-size: 15rem;
         letter-spacing: 6px;
     }
 }

 @media (max-width: 768px) {
     .footer-container {
         padding-top: 2rem;
     }

     .footer-content {
         padding: 0 1rem;
         gap: 1.5rem;
     }

     .footer-main-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }

     .footer-main-glass {
         padding: 2rem;
         margin-bottom: 15px;
     }

     .footer-logo-image {
         height: 50px;
     }

     .footer-description {
         font-size: 0.9rem;
     }

     .footer-social-icon {
         width: 36px;
         height: 36px;
         font-size: 1.1rem;
     }

    .footer-links-title,
    .footer-solutions-title,
    .footer-contact-title {
        font-size: 1.15rem;
    }

    .footer-language-dropdown {
        max-width: 100%;
    }

    .footer-language-button {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }

    .footer-language-menu {
        min-width: 140px;
        max-width: 160px;
        padding: 0.4rem;
    }

    .footer-language-option {
        padding: 0.55rem 0.7rem;
        font-size: 0.9rem;
    }

    .footer-title-section {
        display: none;
    }

     .footer-copyright-section {
         margin-top: 1.5rem;
         padding-top: 1.5rem;
     }

     .footer-copyright-text {
         font-size: 0.85rem;
         line-height: 1.6;
     }
 }

 @media (max-width: 480px) {
     .footer-container {
         padding-top: 1.5rem;
     }

     .footer-content {
         padding: 0 1rem;
         gap: 1.25rem;
     }

     .footer-main-grid {
         gap: 1.25rem;
     }

     .footer-main-glass {
         padding: 1.5rem;
         margin-bottom: 15px;
     }

     .footer-logo-image {
         height: 40px;
     }

     .footer-description {
         font-size: 0.85rem;
         line-height: 1.5;
     }

     .footer-links-title,
     .footer-solutions-title,
     .footer-contact-title {
         font-size: 1.1rem;
         margin-bottom: 1rem;
     }

     .footer-social-icon {
         width: 32px;
         height: 32px;
         font-size: 1rem;
     }

     .footer-link {
         font-size: 0.9rem;
     }

     .footer-contact-list li {
         margin-bottom: 0.75rem;
         gap: 0.5rem;
     }

    .footer-contact-list li i {
        font-size: 1rem;
        width: 18px;
    }

    .footer-language-dropdown {
        max-width: 50%;
    }

    .footer-language-button {
        padding: 0.45rem 0.65rem;
        font-size: 0.85rem;
    }

    .footer-language-menu {
        border-radius: 10px;
        padding: 0.35rem;
        min-width: 120px;
        max-width: 140px;
        max-height: 200px;
    }

    .footer-language-option {
        padding: 0.5rem 0.65rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }

    .footer-language-flag {
        width: 14px;
        height: 10px;
    }

    .footer-title-section {
        display: none;
    }

     .footer-copyright-section {
         margin-top: 1rem;
         padding-top: 1rem;
     }

     .footer-copyright-text {
         font-size: 0.8rem;
         line-height: 1.5;
     }
 }