.elementor-107 .elementor-element.elementor-element-dbb76f8{--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;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-73ba4cd *//* === MASTER LAYOUT & FAB CSS (FINAL CORRECTED VERSION) === */

/* 1. Global Body & Layout Setup */
body {
    background-color: #10141A; /* Set background color */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Create space for the fixed header. Adjust this value! */
    padding-top: 105px;
}

/* 2. Header Styling */
.elementor-location-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* 3. Sticky Footer Fix */
.elementor-location-footer {
    margin-top: auto;
}

/* 4. Floating Action Buttons (FAB) Styling */
#fab-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    z-index: 9999;
}

#fab-left-group {
    position: absolute; 
    bottom: 20px;
    left: 20px;
}

/* THIS SELECTOR IS NOW CORRECTED */
#fab-right-group {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.fab-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.fab-button:hover {
    transform: scale(1.1);
}

.fab-options-container,
.fab-options-container-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 70px; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.fab-options-container {
    left: 0;
}
.fab-options-container-right {
    right: 0;
}


#fab-left-group.active .fab-options-container,
#fab-right-group.active .fab-options-container-right {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option-button {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
}
.fab-option-label {
    position: absolute;
    left: 65px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

/* Icon Toggling */
.fab-button .icon-close { display: none; }
.fab-button .icon-open { display: block; }

#fab-left-group.active #fab-left-toggle i,
#fab-right-group.active #fab-right-toggle .icon-open {
    transform: rotate(180deg);
}
#fab-left-toggle i,
#fab-right-toggle .icon-open {
    transition: transform 0.3s ease;
}

#fab-right-group.active #fab-right-toggle .icon-close {
    display: block;
}
#fab-right-group.active #fab-right-toggle .icon-open {
    display: none;
}/* End custom CSS */