.floating-actions {
        position: fixed;
        right: 30px;
        bottom: 30px;
        z-index: 10050;
        display: flex;
        flex-direction: column;
        gap: 20px;
        pointer-events: none;
    }

    /* Chat Modal CSS */
    .chat-modal-content {
        display: flex;
        flex-direction: column;
        height: 100%;
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .chat-modal-header {
        padding: 15px 20px;
        background: linear-gradient(135deg, #dc3545, #ff6b6b);
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .chat-header-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .chat-avatar {
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #dc3545;
        font-size: 20px;
    }
    
    .chat-close {
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        padding: 5px;
        transition: opacity 0.3s;
    }
    
    .chat-close:hover {
        opacity: 0.8;
    }
    
    .chat-modal-body {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        background: #f8f9fa;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .chat-message {
        display: flex;
        max-width: 80%;
    }
    
    .chat-message.bot {
        align-self: flex-start;
    }
    
    .chat-message.user {
        align-self: flex-end;
        flex-direction: row-reverse;
    }
    
    .message-content {
        background: white;
        padding: 12px 15px;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: relative;
    }
    
    .chat-message.bot .message-content {
        border-bottom-left-radius: 5px;
        background: #e9ecef;
    }
    
    .chat-message.user .message-content {
        border-bottom-right-radius: 5px;
        background: #dc3545;
        color: white;
    }
    
    .message-text {
        margin-bottom: 5px;
    }
    
    .message-options {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .option-btn {
        background: #007bff;
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .option-btn:hover {
        background: #0056b3;
        transform: translateY(-2px);
    }
    
    .message-time {
        font-size: 11px;
        color: #6c757d;
        text-align: right;
    }
    
    .chat-message.user .message-time {
        color: rgba(255,255,255,0.8);
    }
    
    .chat-modal-footer {
        padding: 15px;
        background: white;
        border-top: 1px solid #dee2e6;
    }
    
    .chat-input-group {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .chat-input {
        flex: 1;
        padding: 10px 15px;
        border: 1px solid #ced4da;
        border-radius: 25px;
        outline: none;
        transition: border-color 0.3s;
    }
    
    .chat-input:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }
    
    .chat-send-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #dc3545;
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .chat-send-btn:hover {
        background: #c82333;
        transform: scale(1.05);
    }
    
    .chat-suggestions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .suggestion {
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        padding: 4px 10px;
        border-radius: 15px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .suggestion:hover {
        background: #e9ecef;
        border-color: #dc3545;
        color: #dc3545;
    }
    
    /* Existing CSS */
    .whatsapp-float {
        position: fixed;
        bottom: 120px;
        right: 30px;
        width: 60px;
        height: 60px;
        z-index: 9999;
    }
    
    .whatsapp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background: #25D366;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
        position: relative;
        animation: floatWhatsApp 3s ease-in-out infinite;
    }
    
    @keyframes floatWhatsApp {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    .whatsapp-btn:hover {
        background: #128C7E;
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
        color: white;
        animation: none;
    }
    
    .whatsapp-btn i {
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        background: #333;
        color: white;
        padding: 8px 15px;
        border-radius: 6px;
        font-size: 14px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .whatsapp-btn:hover .whatsapp-tooltip {
        opacity: 1;
        visibility: visible;
        right: 75px;
    }
    
    .chat-float {
        position: fixed;
        bottom: 40px;
        right: 30px;
        width: 60px;
        height: 60px;
        z-index: 9999;
    }
    
    .chat-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #dc3545, #ff6b6b);
        color: white;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
        transition: all 0.3s ease;
        position: relative;
        animation: floatChat 3s ease-in-out infinite;
        animation-delay: 0.5s;
    }
    
    @keyframes floatChat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    .chat-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
        animation: none;
    }
    
    .chat-btn i {
        font-size: 24px;
    }
    
    .chat-tooltip {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        background: #333;
        color: white;
        padding: 8px 15px;
        border-radius: 6px;
        font-size: 14px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .chat-btn:hover .chat-tooltip {
        opacity: 1;
        visibility: visible;
        right: 75px;
    }
    
    .chat-notification {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #ffc107;
        color: #333;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }
    
    .chat-modal {
        display: none;
        position: fixed;
        bottom: 120px;
        right: 30px;
        width: 380px;
        max-width: 90%;
        height: 500px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        z-index: 10002;
        overflow: hidden;
    }
    
    .chat-modal.active {
        display: block;
        animation: slideIn 0.3s ease;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Service Cards */
    .service-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .service-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .service-card:hover .service-image img {
        transform: scale(1.05);
    }
    
    .service-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        background: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }
    
    .service-icon i {
        font-size: 1.5rem;
        color: #dc3545;
    }
    
    /* Warning Section */
    .warning-list {
        margin-top: 30px;
    }
    
    .warning-item {
        display: flex;
        align-items: center;
        padding: 15px;
        background: white;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }
    
    .warning-item:hover {
        transform: translateX(5px);
    }
    
    .warning-item i {
        font-size: 1.8rem;
    }
    
    /* Brands Carousel */
    .brands-carousel-container {
        overflow: hidden;
        position: relative;
    }
    
    .brands-carousel {
        display: flex;
        animation: scrollBrands 20s linear infinite;
        gap: 30px;
        padding: 20px 0;
    }
    
    @keyframes scrollBrands {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .brand-item {
        flex: 0 0 auto;
        width: 150px;
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .brand-logo {
        height: 60px;
        object-fit: contain;
        margin-bottom: 10px;
    }
    
    /* Contact Section */
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    @media (max-width: 992px) {
        .contact-wrapper {
            grid-template-columns: 1fr;
        }
    }
    
    .contact-form-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    }
    
    .contact-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info-card {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    }
    
    .contact-info-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        background: #dc3545;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .whatsapp-float {
            bottom: 100px;
            right: 20px;
            width: 55px;
            height: 55px;
        }
        
        .chat-float {
            bottom: 30px;
            right: 20px;
            width: 55px;
            height: 55px;
        }
        
        .chat-modal {
            bottom: 100px;
            right: 20px;
            width: calc(100% - 40px);
            height: 450px;
        }
        
        .whatsapp-btn i {
            font-size: 24px;
        }
        
        .chat-btn i {
            font-size: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .whatsapp-float {
            bottom: 90px;
            right: 15px;
            width: 50px;
            height: 50px;
        }
        
        .chat-float {
            bottom: 25px;
            right: 15px;
            width: 50px;
            height: 50px;
        }
        
        .chat-modal {
            bottom: 90px;
            right: 15px;
            width: calc(100% - 30px);
        }
        
        .chat-tooltip,
        .whatsapp-tooltip {
            display: none;
        }
        
        .brand-item {
            width: 120px;
        }
    }

    /* Brands Section */
.brands-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.brands-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.brands-carousel {
    display: flex;
    animation: scrollBrands 40s linear infinite;
    gap: 25px;
    padding: 15px 0;
}

.brands-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

.brand-item {
    flex: 0 0 auto;
    width: 220px;
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.brand-logo-container {
    position: relative;
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.brand-logo {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-item:hover .brand-logo {
    transform: scale(1.1);
}

.brand-icon-fallback {
    display: none;
    font-size: 3rem;
    color: var(--primary-color);
}

.brand-name {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-align: center;
}

.brand-services {
    color: #666;
    font-size: 0.85rem;
    text-align: center;
    margin-top: auto;
}

/* Brand Badges */
.brand-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    margin: 5px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.brand-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.2);
}

.brand-badge i {
    font-size: 0.9rem;
}

/* Responsive Brands */
@media (max-width: 768px) {
    .brands-carousel {
        animation: scrollBrands 30s linear infinite;
        gap: 20px;
    }
    
    .brand-item {
        width: 180px;
        padding: 20px 15px;
    }
    
    .brand-logo-container {
        height: 60px;
    }
    
    .brand-logo {
        height: 50px;
    }
    
    .brand-icon-fallback {
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-badge {
        padding: 6px 15px;
        font-size: 0.9rem;
        margin: 3px;
    }
    
    @keyframes scrollBrands {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-200px * 6)); }
    }
}

@media (max-width: 576px) {
    .brands-carousel {
        gap: 15px;
    }
    
    .brand-item {
        width: 150px;
        padding: 15px 10px;
    }
    
    .brand-logo-container {
        height: 50px;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .brand-icon-fallback {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-badge {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}

/* Fix for Font Awesome brand icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");