/* ===================================================================
   One Painters Footer Widget - Elementor Styles
   Professional footer with newsletter and trust badges
   =================================================================== */

/* Newsletter Section */
.ope-newsletter {
    background: linear-gradient(135deg, #ff6b35 0%, #ffb84d 100%);
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}

.ope-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.ope-newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ope-newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.ope-newsletter-text h3 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.ope-newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.ope-newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.ope-newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.ope-newsletter-form input:focus {
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ope-newsletter-form button {
    padding: 16px 32px;
    background: #1a1d29;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ope-newsletter-form button:hover {
    background: #252936;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Main */
.ope-footer {
    background: #1a1d29;
    color: #e0e4ea;
    padding: 60px 0 0;
}

.ope-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Footer Columns */
.ope-footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.ope-footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 24px 0;
    position: relative;
    display: inline-block;
}

.ope-footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffb84d);
    border-radius: 2px;
}

.ope-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ope-footer-column ul li {
    margin-bottom: 12px;
}

.ope-footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ope-footer-column ul li a:hover {
    color: #ff6b35;
    transform: translateX(4px);
}

.ope-footer-column .ope-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ope-social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252936;
    border-radius: 10px;
    color: #e0e4ea;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ope-social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.ope-social-icon.whatsapp:hover {
    background: #25d366;
    color: white;
}

.ope-social-icon.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.ope-social-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

/* Trust Badges */
.ope-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid #3a3f51;
    border-bottom: 1px solid #3a3f51;
    margin-bottom: 40px;
}

.ope-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #252936;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ope-badge:hover {
    background: #2d3142;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.ope-badge-icon {
    font-size: 32px;
    color: #ff6b35;
    flex-shrink: 0;
}

.ope-badge-text strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 4px;
}

.ope-badge-text span {
    color: #9ca3af;
    font-size: 14px;
}

/* Footer Bottom */
.ope-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid #3a3f51;
    flex-wrap: wrap;
    gap: 20px;
}

.ope-copyright {
    color: #9ca3af;
    font-size: 15px;
    margin: 0;
}

.ope-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ope-legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.ope-legal-links a:hover {
    color: #ff6b35;
}

.ope-legal-links .separator {
    color: #3a3f51;
}

/* Responsive */
@media (max-width: 1024px) {
    .ope-footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .ope-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ope-newsletter {
        padding: 40px 20px;
    }

    .ope-newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .ope-newsletter-text h3 {
        font-size: 24px;
    }

    .ope-newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .ope-newsletter-form button {
        width: 100%;
    }

    .ope-footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ope-trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ope-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .ope-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ope-badge {
        gap: 15px;
        padding: 15px;
    }

    .ope-badge-icon {
        font-size: 28px;
    }
}