/* Overriding Elementor Dark Themes to White & Red */

/* Global Backgrounds */
body, .elementor-section, .elementor-container, .elementor-widget-wrap, .elementor-background-overlay, 
#page, .wpbf-page, .site-header, .site-footer, #header, #footer, main, .site-content, .site-main, .elementor-widget-container,
.wpbf-navigation, .wpbf-mobile-menu, .elementor-section-wrap, article, .post, .page, .hentry {
    background-color: #ffffff !important;
    background-image: none !important; /* Remove dark gradients/images */
}

/* Hide Cookie Notice & Popups */
#cookie-notice, .cookie-notice-container, #cn-notice, .cn-bottom {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Global Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

body, p, span, div, li, a, .elementor-text-editor, .elementor-icon-list-text, h1, h2, h3, h4, h5, h6, .elementor-heading-title, .elementor-button, .elementor-widget-icon-box {
    font-family: 'Montserrat', sans-serif !important;
}

body, p, span, div, li, .elementor-text-editor, .elementor-icon-list-text, .wpbf-menu a {
    color: #333333 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6, .elementor-heading-title, .elementor-icon-box-title span, .elementor-icon-box-title a, .elementor-image-box-title {
    color: #cc0000 !important; /* Premium Red */
    text-shadow: none !important;
}

/* Specific red emphasis for spans */
.text-red, .has-vivid-red-color, span[style*="color: #ff0000"] {
    color: #ff0000 !important;
}

/* Buttons */
.elementor-button, a.elementor-button, button.elementor-button, .wpbf-button {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4) !important;
    transition: all 0.3s ease !important;
}
.elementor-button:hover, a.elementor-button:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6) !important;
    color: #ffffff !important;
}

.elementor-button-text {
    color: #ffffff !important;
}

/* Cards & Boxes */
.elementor-image-box-wrapper, .elementor-widget-icon-box {
    background-color: #fcfcfc !important;
    border: 1px solid #eeeeee !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    padding: 20px !important;
    transition: all 0.3s ease !important;
}

.elementor-image-box-wrapper:hover, .elementor-widget-icon-box:hover {
    box-shadow: 0 15px 35px rgba(204, 0, 0, 0.15) !important;
    border-color: #ffcccc !important;
    transform: translateY(-5px) !important;
}

/* Images Soft Shadows & Rounding */
.elementor-image img {
    border-radius: 16px !important;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2) !important;
}

/* Icons */
.elementor-icon, .elementor-icon-list-icon i {
    color: #cc0000 !important;
}

/* FAQ / Toggle (Modern Design) */
.elementor-toggle-item, .elementor-accordion-item {
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 16px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

.elementor-toggle-item:hover, .elementor-accordion-item:hover {
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.08) !important;
    transform: translateY(-2px) !important;
    border-color: #ffcccc !important;
}

.elementor-toggle-title, .elementor-tab-title {
    color: #cc0000 !important;
    background-color: #ffffff !important; /* Force white to avoid red-on-red */
    font-weight: 700 !important;
    padding: 20px 25px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.elementor-tab-title[aria-expanded="true"] {
    background-color: #fff5f5 !important;
    border-bottom: 1px solid #ffeeee !important;
}

.elementor-tab-content {
    background-color: #ffffff !important;
    color: #4a4a4a !important;
    padding: 20px 25px !important;
    line-height: 1.7 !important;
}

/* Hide the broken FontAwesome square icon */
.elementor-toggle-icon, .elementor-accordion-icon {
    display: none !important;
}

/* Create a CSS-based +/- icon to replace the broken one */
.elementor-tab-title::after {
    content: '+';
    font-size: 24px !important;
    color: #cc0000 !important;
    font-weight: 400 !important;
    margin-left: 15px;
    transition: transform 0.3s ease !important;
}

.elementor-tab-title[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(180deg);
}

/* Responsive Header CTA */
@media (max-width: 768px) {
    #header-cta-btn {
        padding: 8px 14px !important;
        font-size: 11px !important;
        gap: 5px !important;
    }
    #header-cta-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
}

@media (max-width: 480px) {
    #header-cta-btn {
        padding: 8px 10px !important;
        font-size: 10px !important;
        letter-spacing: 0px !important;
    }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #cc0000; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #990000; }
