/* =========================================
   SMART MOTORS WHATSAPP FLOATING BUTTON
========================================= */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999999;
    box-shadow: 0 8px 25px rgba(37,211,102,.35), 0 4px 10px rgba(0,0,0,.15);
    transition: all .3s ease;
    text-decoration: none;
}

/* Hover */
.whatsapp-float:hover {
    background: #1ebe5d;
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 6px 14px rgba(0,0,0,.18);
}

/* Icon */
.whatsapp-float i,
.whatsapp-float svg {
    color: #ffffff !important;
}

/* Pulse Animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,.4);
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

/* Animation */
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: .7; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Mobile Responsive */
@media(max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 18px;
        font-size: 26px;
    }
}


/* =====================================================
   SMART MOTORS FORCE GLOBAL HEADER FIX
===================================================== */

/* 1. TOP HEADER BACKGROUND (Red) */
header,
.header,
.header-area,
.header-two,
.header-three,
.inner-header,
.top-header,
.header-top {
    background: #dc2626 !important;
}

/* 2. MAIN MENU BACKGROUND (White) */
.menu-bg,
.mobile-header,
.navbar-area,
.main-header,
.menu-header {
    background: #ffffff !important;
}

/* 3. TOP BAR TEXT & ICONS (White to look good on Red) */
.header-left-inner a,
.header-left-inner p,
.header-right-item-btn > .dropdown > a,
.header-right-login-btn a {
    color: #ffffff !important;
}
.header-left-inner .icon svg path {
    stroke: #ffffff !important;
}
.header-right-item-btn svg path,
.header-right-item-btn svg ellipse {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}
.header-right-login-btn svg ellipse,
.header-right-login-btn svg circle {
    stroke: #ffffff !important;
}
.header-border {
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}

/* 4. NAV MENU TEXT (Dark) */
.menu-bg a,
.mobile-header a,
header .navbar-nav li a,
.header .nav-link {
    color: #111827 !important;
    font-weight: 500;
}

/* 5. ACTIVE & HOVER MENU TEXT (Red) */
.menu-bg a:hover,
.mobile-header a:hover,
header .navbar-nav li a:hover,
header .nav-link:hover,
.menu-bg .active > a {
    color: #dc2626 !important;
}

/* STICKY HEADER */
.header.sticky,
.fixed-header,
.header-fixed {
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

/* ADD CAR BUTTON / DASHBOARD BTN */
.add-car-btn,
.header-btn,
a[href*="add-car"],
.menu-bg .thm-btn-two,
.mobile-header .thm-btn-two {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
    color: #ffffff !important;
}

/* COMPARE BUTTON */
.compare-btn,
.compare-icon,
.compare-box {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
}
.compare-btn i,
.compare-icon i {
    color: #111827 !important;
}

/* COMPARE COUNT BADGE */
.compare-count,
.compare-btn span {
    background: #dc2626 !important;
    color: #ffffff !important;
}

/* DASHBOARD BUTTON */
.dashboard-btn,
a[href*="dashboard"] {
    border: 1px solid #dc2626 !important;
    color: #ffffff !important;
}

/* BLUE REMOVE (Force Theme Red) */
.bg-primary,
.btn-primary,
.primary-bg,
.theme-bg,
.bg-blue,
[style*="background: blue"],
[style*="background-color: blue"],
[style*="#0d6efd"], 
[style*="#007bff"] {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
}
.text-primary {
    color: #dc2626 !important;
}

/* MOBILE FIX */
@media(max-width: 991px) {
    .header,
    .header-two,
    .header-three {
        background: #dc2626 !important;
    }
}

/* =====================================================
   SMART MOTORS GLOBAL FONT FIX (Poppins)
===================================================== */
body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, input, button, select, textarea, label {
    font-family: 'Poppins', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .inner-banner-taitel, .section-title {
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

.btn, .thm-btn-two, .add-car-btn {
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}