.elementor-77 .elementor-element.elementor-element-bde0dfc{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-77 .elementor-element.elementor-element-4beed8b{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-b319a2e */.bottom-actions {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
}

.devis-main-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #000000 100%);
    padding: 15px 0 !important;
    width: 75% !important;
    border-radius: 60px;
    text-decoration: none;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    animation: leftRightBounce 20s infinite;
}

.devis-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.devis-icon svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
}

.devis-text {
    font-size: 1.1rem !important;
    font-weight: 600;
    line-height: 1.2;
}

.devis-main-btn:hover {
    transform: translateX(0) !important;
    background: linear-gradient(135deg, #262626 0%, #0f0f0f 50%, #080808 100%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: none;
}

.devis-main-btn:active {
    transform: translateY(2px);
    transition: all 0.05s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

@keyframes leftRightBounce {
    0% {
        transform: translateX(0);
    }
    8% {
        transform: translateX(-6px);
    }
    16% {
        transform: translateX(6px);
    }
    24% {
        transform: translateX(-4px);
    }
    32% {
        transform: translateX(4px);
    }
    40% {
        transform: translateX(-2px);
    }
    48% {
        transform: translateX(2px);
    }
    56% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0);
    }
}

#whatsapp-side {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20% !important;
    background-color: #25D366;
    border-radius: 50%;
    padding: 12px 0px !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: bounceLoop 2.5s infinite ease-in-out;
}

/* WhatsApp Icon */
#whatsapp-side img {
    width: 38px !important;
    height: 38px !important;
    display: block;
}

#whatsapp-side:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
    background-color: #20b859;
    animation: none;
}

@keyframes bounceLoop {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-4px);
    }
}

/* Mobile styles (769px and below) - Both buttons visible */
@media (max-width: 768px) {
    .bottom-actions {
        bottom: 20px;
        left: 16px;
        right: 16px;
        gap: 12px;
        display: flex; /* Ensure container is visible */
    }
    
    .devis-main-btn {
        padding: 12px 0;
        width: 70%;
        display: inline-flex; /* Show on mobile */
    }
    
    .devis-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .devis-text {
        font-size: 0.95rem;
    }
    
    #whatsapp-side {
        width: 30%;
        padding: 8px 0;
    }
    
    #whatsapp-side img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .bottom-actions {
        bottom: 16px;
        left: 12px;
        right: 12px;
        gap: 10px;
    }
    
    .devis-main-btn {
        padding: 10px 0;
        width: 72%;
        display: inline-flex; /* Show on mobile */
    }
    
    .devis-text {
        font-size: 0.85rem;
    }
    
    .devis-icon svg {
        width: 18px;
        height: 18px;
    }
    
    #whatsapp-side {
        width: 28%;
        padding: 6px 0;
    }
    
    #whatsapp-side img {
        width: 24px;
        height: 24px;
    }
}

/* Tablet styles */
@media (min-width: 481px) and (max-width: 768px) {
    .devis-main-btn {
        width: 80% !important;
        display: inline-flex;
    }
    #whatsapp-side {
        width: 10% !important;
    }
}

@media (min-width: 769px) {
    .bottom-actions {
        display: flex; 
        justify-content: flex-end; 
        left: auto;
        right: 50px;
        bottom: 50px;
        width: auto;
    }
        .devis-main-btn {
        display: none !important;
    }
    
    #whatsapp-side {
        width: auto !important;
        padding: 12px !important;
        position: relative;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    #whatsapp-side {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    #whatsapp-side:hover {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
    }
    
    #whatsapp-side img {
        width: 42px !important;
        height: 42px !important;
    }
}

/* Print styles */
@media print {
    .bottom-actions {
        display: none;
    }
}

@keyframes slideUpButtons {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bottom-actions {
    animation: slideUpButtons 0.4s ease-out;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7a1f582 */.wave-section {
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
}

.wave-top-spacer,
.wave-bottom-spacer {
  height: 0px;
  line-height: 0;
  font-size: 0;
}

/* Main wave divider */
.wave-divider {
  width: 100%;
  position: relative;
  line-height: 0;
  background-color: transparent;
}

/* SVG wrapper */
.wave-svg-wrapper {
  display: block;
  width: 100%;
  line-height: 0;
}

.animated-waves {
  display: block;
  width: 100%;
  height: 100px;
  min-height: 20px;  
  line-height: 0;
}

.wave-layer {
  fill: currentColor;
}

.wave-divider {
  color: #0C0D0E;      
}

.wave-section {
  background-color: #D70000z; 
}

.wave-1,
.wave-2,
.wave-3,
.wave-4 {
  animation: gentleWaveMotion 12s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  transform-origin: center;
  will-change: transform;
}

.wave-1 {
  animation-duration: 9s;
  opacity: 0.7;
}

.wave-2 {
  animation-duration: 14s;
  opacity: 0.5;
  animation-direction: reverse;
}

.wave-3 {
  animation-duration: 18s;
  opacity: 0.3;
}

.wave-4 {
  animation-duration: 11s;
  opacity: 0.15;
  animation-direction: reverse;
}

@keyframes gentleWaveMotion {
  0% {
    transform: translateX(0) scale(1.2, 1);
  }
  50% {
    transform: translateX(-15%) scale(1.05, 1);
  }
  100% {
    transform: translateX(-30%) scale(1.2, 1);
  }
}

@media (max-width: 749px) {
  .animated-waves {
    min-height: 45px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5529547 *//* Footer */
    .footer {
        width: 100%;
        background: #11130E;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        position: relative;
        overflow: hidden;
    }

    /* Subtle background accent */
    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #CBA83A60, #CBA83A60, transparent);
    }

    .footer-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 4rem 2rem 2rem 2rem;
        position: relative;
        z-index: 2;
    }

    /* Footer Grid */
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    /* Brand Column */
    .footer-logo img {
        height: 90px;
        width: auto;
        object-fit: contain;
        margin-bottom: 1rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
        font-weight: 600;
        color: #fff;
        letter-spacing: 1px;
        margin: 0 0 1rem 0;
        text-transform: uppercase;
    }

    .footer-description {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #A0A5A0;
        margin: 0 0 1.5rem 0;
    }

    /* Social Links */
    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: #A0A5A0;
    }

    .social-link:hover {
        background: #CBA83A;
        color: white;
        transform: translateY(-3px);
    }

    /* Navigation Columns */
    .footer-headline {
        font-size: 0.9rem;
        font-weight: 700;
        color: white;
        margin: 0 0 1.25rem 0;
        letter-spacing: 0.5px;
        position: relative;
        display: inline-block;
    }

    .footer-headline::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 30px;
        height: 2px;
        background: #CBA83A;
        transition: width 0.3s ease;
    }

    .footer-nav:hover .footer-headline::after {
        width: 50px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        color: #A0A5A0;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .footer-links a:hover {
        color: #CBA83A;
        padding-left: 4px;
    }

    /* Contact Column */
    .footer-contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-contact-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        font-size: 0.85rem;
        color: #A0A5A0;
    }

    .footer-contact-list li svg {
        flex-shrink: 0;
        color: #CBA83A;
    }

    .footer-contact-list li a {
        color: #A0A5A0;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-contact-list li a:hover {
        color: #CBA83A;
    }

    .footer-contact-list li span {
        color: #A0A5A0;
    }

    /* Bottom Bar */
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .footer-copyright p {
        font-size: 0.75rem;
        color: #6B6F6B;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 0.75rem;
        color: #6B6F6B;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-legal a:hover {
        color: #CBA83A;
    }

    .separator {
        font-size: 0.7rem;
        color: #6B6F6B;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 2rem;
        }
    }

    @media (max-width: 900px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .footer-brand {
            grid-column: span 2;
        }
    }

    @media (max-width: 600px) {
        .footer-container {
            padding: 3rem 1.5rem 1.5rem 1.5rem;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .footer-brand {
            grid-column: span 1;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }

        .footer-legal {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .footer-container {
            padding: 2.5rem 1rem 1.5rem 1rem;
        }

        .footer-logo img {
            height: 40px;
        }
    }

    /* Animation */
    @keyframes fadeInFooter {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-grid > div {
        animation: fadeInFooter 0.4s ease forwards;
        opacity: 0;
    }

    .footer-grid > div:nth-child(1) { animation-delay: 0.05s; }
    .footer-grid > div:nth-child(2) { animation-delay: 0.1s; }
    .footer-grid > div:nth-child(3) { animation-delay: 0.15s; }
    .footer-grid > div:nth-child(4) { animation-delay: 0.2s; }/* End custom CSS */