/* Light Theme Footer Widget Styles */
:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.15);
    --glass-bg-active: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
    --backdrop-blur: blur(10px);
    --clip-angled: polygon(15px 0, calc(100% - 15px) 0, calc(100% - 15px) 100%, 15px 100%);
    --fadeIn-base: fadeInUp 1s ease-out;
    --fadeIn-both: fadeInUp 1s ease-out both;
    --transform-hover-sm: translateY(-5px) scale(1.02);
    --transform-hover-md: translateY(-10px) scale(1.05);
    --transform-hover-lg: translateY(-15px) scale(1.08);
    --transform-active: translateY(-1px) scale(0.98);
}

.light-theme-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    width: 100%;
    margin: 0;
    padding: 32px 48px;
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    gap: 32px;
    align-items: start;
}

/* Logo Section */
.footer-logo-section {
    animation: fadeInLeft 1s ease-out 0.5s both;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    clip-path: var(--clip-angled);
    overflow: hidden;
}

.footer-logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.4px;
    background: linear-gradient(90deg, #ff0000, #ff4d4d, #ff0000);
    border-radius: 0 0 2px 2px;
}

.footer-logo {
    margin-bottom: 16px;
    text-align: center;
}

.footer-logo img {
    max-width: 95px;
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

.footer-description {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.4px;
    margin: 0;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Menu Columns */
.footer-menu-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.footer-menu-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    color: #ffffff;
    font-size: 1.105rem;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
}

.footer-menu-item {
    color: #cccccc;
    font-size: 0.975rem;
    font-weight: 300;
    text-decoration: none;
    margin-bottom: 6.4px;
    transition: all 0.3s ease;
    letter-spacing: 0.4px;
    cursor: pointer;
}

.footer-menu-item:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Contact Section */
.footer-contact {
    animation: fadeInRight 1s ease-out 0.9s both;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    clip-path: var(--clip-angled);
    overflow: hidden;
}

.footer-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.4px;
    background: linear-gradient(90deg, #ff0000, #ff4d4d, #ff0000);
    border-radius: 0 0 2px 2px;
}

.footer-contact-title {
    color: #ffffff;
    font-size: 1.105rem;
    font-weight: 400;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
}

.footer-contact-item {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    color: #ffffff;
    font-size: 0.975rem;
    font-weight: 400;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-contact-value {
    color: #cccccc;
    font-size: 1.105rem;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.4px;
}

.footer-contact-value:hover {
    color: #ffffff;
}

/* Footer Social Media */
.footer-social-media {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 14.4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    position: relative;
    overflow: hidden;
    animation: var(--fadeIn-both);
    transform: translateY(16px);
    opacity: 0;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: currentColor;
    transform: translateY(-2.4px) scale(1.1);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 16px currentColor;
}

.footer-social-icon:hover::before {
    opacity: 0.1;
}

.footer-social-icon:active {
    transform: translateY(-0.8px) scale(1.05);
}

.footer-social-icon svg,
.footer-social-icon i {
    position: relative;
    z-index: 1;
}

/* Social Icon Color Styles */
.footer-social-facebook:hover {
    color: #3b5998;
    border-color: #3b5998;
    box-shadow: 
        0 10px 25px rgba(59, 89, 152, 0.3),
        0 0 20px rgba(59, 89, 152, 0.3);
}

.footer-social-instagram:hover {
    color: #e4405f;
    border-color: #e4405f;
    box-shadow: 
        0 10px 25px rgba(228, 64, 95, 0.3),
        0 0 20px rgba(228, 64, 95, 0.3);
}

.footer-social-twitter:hover {
    color: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 
        0 10px 25px rgba(29, 161, 242, 0.3),
        0 0 20px rgba(29, 161, 242, 0.3);
}

.footer-social-linkedin:hover {
    color: #0077b5;
    border-color: #0077b5;
    box-shadow: 
        0 10px 25px rgba(0, 119, 181, 0.3),
        0 0 20px rgba(0, 119, 181, 0.3);
}

.footer-social-youtube:hover {
    color: #ff0000;
    border-color: #ff0000;
    box-shadow: 
        0 10px 25px rgba(255, 0, 0, 0.3),
        0 0 20px rgba(255, 0, 0, 0.3);
}

.footer-social-whatsapp:hover {
    color: #25d366;
    border-color: #25d366;
    box-shadow: 
        0 10px 25px rgba(37, 211, 102, 0.3),
        0 0 20px rgba(37, 211, 102, 0.3);
}

.footer-social-pinterest:hover {
    color: #bd081c;
    border-color: #bd081c;
    box-shadow: 
        0 10px 25px rgba(189, 8, 28, 0.3),
        0 0 20px rgba(189, 8, 28, 0.3);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Delays for Social Icons */
.footer-social-icon:nth-child(1) { animation-delay: 0.2s; }
.footer-social-icon:nth-child(2) { animation-delay: 0.3s; }
.footer-social-icon:nth-child(3) { animation-delay: 0.4s; }
.footer-social-icon:nth-child(4) { animation-delay: 0.5s; }
.footer-social-icon:nth-child(5) { animation-delay: 0.6s; }
.footer-social-icon:nth-child(6) { animation-delay: 0.7s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 30px 40px;
    }

    .footer-menu-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .light-theme-footer {
        padding: 20px 30px;
    }

    .footer-content {
        padding: 20px 30px;
    }

    .footer-menu-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .light-theme-footer {
        padding: 40px 20px;
    }

    .footer-content {
        gap: 25px;
        padding: 0;
    }

    .footer-menu-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-social-icons {
        justify-content: center;
        gap: 12px;
    }

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

    .footer-logo-section,
    .footer-contact {
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
        max-width: 100%;
        text-align: center;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-contact-item {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 0.8rem;
    }
}