.elementor-7129 .elementor-element.elementor-element-881e123{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-5ad115a *//* ==========================================
   One Painters Footer - Premium Styles
   ========================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-bg: #1a1d29;
    --secondary-bg: #252936;
    --accent-orange: #ff6b35;
    --accent-yellow: #ffb84d;
    --text-white: #ffffff;
    --text-light: #e0e4ea;
    --text-muted: #9ca3af;
    --border-color: #3a3f51;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-light);
    background: #f5f5f5;
    overflow-x: hidden;
}

/* Demo Content */
.demo-content {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--spacing-xl);
}

.demo-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.demo-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ==========================================
   Newsletter Section
   ========================================== */

.newsletter-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.newsletter-section::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); }
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.newsletter-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--spacing-xs);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-normal);
}

.newsletter-form input:focus {
    border-color: var(--text-white);
    background: var(--text-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-form input::placeholder {
    color: #666;
}

.subscribe-btn {
    padding: 0.875rem 2rem;
    background: var(--primary-bg);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: var(--secondary-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   Main Footer
   ========================================== */

.main-footer {
    background: var(--primary-bg);
    color: var(--text-light);
    padding: var(--spacing-2xl) 0 0;
    position: relative;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Floating CTA Button */
.footer-cta-float {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--spacing-xl);
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-yellow) 100%);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left var(--transition-slow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.45);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 2px;
}

/* Brand Column */
.brand-column .brand-logo h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.brand-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    color: var(--text-light);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-icon.whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-icon.google:hover {
    background: #4285f4;
    color: white;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(4px);
}

.footer-links a svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.footer-links .cta-link {
    color: var(--accent-yellow);
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.footer-links .cta-link:hover {
    color: var(--accent-orange);
}

/* Contact Column */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact-item svg {
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    color: var(--text-white);
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.contact-link:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.whatsapp-chat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.whatsapp-chat:hover {
    background: rgba(37, 211, 102, 0.2);
}

/* ==========================================
   Trust Badges
   ========================================== */

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-xl);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--secondary-bg);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.badge:hover {
    background: #2d3142;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.badge svg {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.badge-text strong {
    display: block;
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.badge-text span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================
   Footer Bottom
   ========================================== */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--accent-orange);
}

.footer-legal .separator {
    color: var(--border-color);
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .brand-column {
        grid-column: 1 / -1;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }
    
    .demo-content h1 {
        font-size: 2rem;
    }
    
    .demo-content p {
        font-size: 1rem;
    }
    
    .newsletter-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .newsletter-text h3 {
        font-size: 1.375rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }
    
    .footer-cta-float {
        justify-content: center;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .brand-column {
        grid-column: auto;
    }
    
    .brand-column .brand-logo h2 {
        font-size: 1.75rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .badge {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .social-links {
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-column h3 {
        font-size: 1.125rem;
    }
    
    .badge {
        gap: var(--spacing-sm);
    }
    
    .badge svg {
        width: 28px;
        height: 28px;
    }
}

/* ==========================================
   Accessibility & Performance
   ========================================== */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Touch Target Sizes */
@media (hover: none) and (pointer: coarse) {
    .social-icon,
    .footer-links a,
    .contact-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Print Styles */
@media print {
    .newsletter-section,
    .footer-cta-float,
    .social-links {
        display: none;
    }
    
    .main-footer {
        background: white;
        color: black;
    }
}/* End custom CSS */