    /* Footer Scoped Styles */
      /* ===================================================================
   FOOTER SPECIFIC STYLES - WON'T AFFECT HEADER
   All selectors now scoped to .footer parent
   =================================================================== */

.footer,
.footer *,
.footer *::before,
.footer *::after {
    box-sizing: border-box;
}

.footer {
    margin: 0;
    padding: 80px 0 0 0;
    background: #1a1a1a;
    color: #b0b0b0;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer ul,
.footer li,
.footer p,
.footer h3 {
    margin: 0;
    padding: 0;
}

.footer ul {
    list-style: none;
}

.footer a {
    text-decoration: none;
}

/* Column 1: Logo & About */
.footer .footer-about .footer-logo {
    margin-bottom: 25px;
}

.footer .footer-about .footer-logo img {
    width: 180px;
    height: auto;
    display: block;
}

.footer .footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer .footer-contact-item i {
    color: #1abc9c;
    font-size: 1rem;
    margin-top: 2px;
}

.footer .footer-contact-item a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer .footer-contact-item a:hover {
    color: #1abc9c;
}

/* Column Headings */
.footer .footer-links h3,
.footer .footer-downloads h3,
.footer .footer-contacts h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer .footer-links h3::after,
.footer .footer-downloads h3::after,
.footer .footer-contacts h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1abc9c, #79c57d);
    border-radius: 2px;
}

/* Links */
.footer .footer-links ul li {
    margin-bottom: 12px;
}

.footer .footer-links ul li a {
    color: #b0b0b0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer .footer-links ul li a:hover {
    color: #1abc9c;
    transform: translateX(5px);
}

/* Downloads */
.footer .download-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer .download-link i {
    color: #1abc9c;
    font-size: 1.2rem;
}

.footer .download-link:hover {
    color: #1abc9c;
    transform: translateX(5px);
}

/* WhatsApp Form */
.footer .whatsapp-label {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 15px;
    display: block;
}

.footer .whatsapp-form {
    margin-bottom: 25px;
}

.footer .whatsapp-input {
    width: 100%;
    padding: 14px 18px;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 80px;
}

.footer .whatsapp-input:focus {
    outline: none;
    border-color: #1abc9c;
    background: #2f2f2f;
}

.footer .whatsapp-input::placeholder {
    color: #666;
}

.footer .whatsapp-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.footer .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
}

.footer .whatsapp-btn i {
    transition: transform 0.3s ease;
}

.footer .whatsapp-btn:hover i {
    transform: translateX(5px);
}

/* ===================================================================
   FOOTER SOCIAL ICONS - SCOPED TO FOOTER ONLY
   =================================================================== */

.footer .social-icons {
    display: flex;
    gap: 15px;
}

/* IMPORTANT: More specific selector to avoid affecting header */
.footer .footer-contacts .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #2a2a2a;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer .footer-contacts .social-icon:hover {
    transform: translateY(-5px);
}

.footer .footer-contacts .social-icon.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.footer .footer-contacts .social-icon.linkedin:hover {
    background: #0077b5;
    color: #fff;
}

.footer .footer-contacts .social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
    color: #fff;
}

.footer .footer-contacts .social-icon.youtube:hover {
    background: #ff0000;
    color: #fff;
}

/* Footer Bottom */
.footer .footer-bottom {
    padding: 25px 0;
    border-top: 1px solid #333;
    text-align: center;
    margin: 0;
    background: #1a1a1a;
}

.footer .copyright {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.footer .copyright a {
    color: #1abc9c;
    transition: color 0.3s ease;
}

.footer .copyright a:hover {
    color: #79c57d;
}

/* ===================================================================
   FLOATING BUTTONS - OUTSIDE FOOTER, WON'T AFFECT ANYTHING
   =================================================================== */

.dimois-floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    animation: pulse-wa 2s ease-in-out infinite;
    border: none;
    text-decoration: none;
}

@keyframes pulse-wa {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    }
}

.dimois-floating-whatsapp:hover {
    transform: scale(1.1);
}

.dimois-scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(42, 42, 42, 0.95);
    border: 2px solid #1abc9c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1abc9c;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
}

.dimois-scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.dimois-scroll-to-top:hover {
    background: #1abc9c;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0 0;
    }
    
    .footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .dimois-floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    
    .dimois-scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 90px;
        right: 20px;
    }
}