/* Glassmorphism Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.75) 0%, rgba(19, 132, 150, 0.75) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1.2rem 0 0 0;
    margin-top: 2rem;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
}

.modern-footer h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    position: relative;
    padding-bottom: 0.4rem;
}

.modern-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
    border-radius: 2px;
}

.footer-section {
    padding: 0.6rem;
    position: relative;
    z-index: 1;
}

.footer-logo-container {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.footer-logo-container:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-logo-container img {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-contact-info {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 0.6rem;
    line-height: 1.5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.footer-contact-info p {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.85rem;
}

.footer-contact-info b {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.15rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.3rem 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #17a2b8 !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.social-icon i {
    font-size: 1.2em;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.2rem 0;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #ffffff;
}

.footer-links a:hover {
    padding-left: 1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.7rem 0;
    margin-top: 0.8rem;
    text-align: center;
    color: #ffffff;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
}

.side-contact-buttons {
    position: fixed;
    right: 20px;
    top: 35%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.side-contact-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.side-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-contact-btn:hover::before {
    opacity: 1;
}

.side-contact-btn:hover {
    transform: translateX(-5px) scale(1.05);
}

.side-contact-btn a {
    color: #ffffff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.side-contact-btn i {
    font-size: 1.5em;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.side-contact-btn:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.btn-email {
    background: linear-gradient(135deg, rgba(62, 101, 207, 0.8) 0%, rgba(45, 75, 168, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.8) 0%, rgba(0, 102, 153, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.8) 0%, rgba(29, 168, 81, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-facebook {
    background: linear-gradient(135deg, rgba(59, 89, 152, 0.8) 0%, rgba(45, 67, 115, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-instagram {
    background: linear-gradient(135deg, rgba(240, 148, 51, 0.8) 0%, rgba(230, 104, 60, 0.8) 25%, rgba(220, 39, 67, 0.8) 50%, rgba(204, 35, 102, 0.8) 75%, rgba(188, 24, 136, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 1rem 0 0 0;
    }
    
    .footer-section {
        margin-bottom: 1rem;
        padding: 0.5rem;
    }
    
    .side-contact-buttons {
        top: auto;
        bottom: 20px;
        flex-direction: row;
        right: 50%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 20px;
        padding: 0.4rem;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .side-contact-btn {
        width: 45px;
        height: 45px;
    }
    
    .side-contact-btn:hover {
        transform: scale(1.1);
    }
    
    .side-contact-btn i {
        font-size: 1.3em;
    }
}

@media (max-width: 576px) {
    .modern-footer {
        padding: 0.8rem 0 0 0;
    }
    
    .modern-footer h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section {
        padding: 0.4rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-logo-container {
        padding: 0.4rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-contact-info {
        padding: 0.5rem;
    }
    
    .footer-contact-info p {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.5rem;
        padding: 0.2rem 0;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
    
    .social-icon i {
        font-size: 1.1em;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.3rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.15rem 0;
    }
    
    .footer-bottom {
        padding: 0.6rem 0;
        margin-top: 0.6rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
    
    .side-contact-buttons {
        gap: 0.3rem;
        padding: 0.3rem;
    }
    
    .side-contact-btn {
        width: 40px;
        height: 40px;
    }
    
    .side-contact-btn i {
        font-size: 1.2em;
    }
}
