.elementor-46589 .elementor-element.elementor-element-0fa028a{--display:flex;--min-height:603px;--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;--justify-content:center;--overlay-opacity:0.5;--border-radius:40px 40px 40px 40px;}.elementor-46589 .elementor-element.elementor-element-0fa028a::before, .elementor-46589 .elementor-element.elementor-element-0fa028a > .elementor-background-video-container::before, .elementor-46589 .elementor-element.elementor-element-0fa028a > .e-con-inner > .elementor-background-video-container::before, .elementor-46589 .elementor-element.elementor-element-0fa028a > .elementor-background-slideshow::before, .elementor-46589 .elementor-element.elementor-element-0fa028a > .e-con-inner > .elementor-background-slideshow::before, .elementor-46589 .elementor-element.elementor-element-0fa028a > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:#000000;--background-overlay:'';}.elementor-46589 .elementor-element.elementor-element-0fb952f{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 22px) 0px;}.elementor-46589 .elementor-element.elementor-element-c86df44{--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;--margin-top:-54px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-46589 .elementor-element.elementor-element-382601a .cmsmasters-blog--type-default{--cmsmasters-blog-columns:3;}.elementor-46589 .elementor-element.elementor-element-382601a .cmsmasters-border-columns{border-style:solid;border-right-width:1px;}.elementor-46589 .elementor-element.elementor-element-153f112{--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-46589 .elementor-element.elementor-element-f07594d{--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;}@media(max-width:767px){.elementor-46589 .elementor-element.elementor-element-382601a .cmsmasters-blog--type-default{--cmsmasters-blog-columns:1;}}/* Start custom CSS for container, class: .elementor-element-f07594d */.custom-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111111;
    padding: 15px 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
}

.bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1000px;
    gap: 20px;
}

.decor-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.sticky-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    color: white !important;
    text-decoration: none !important;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.sticky-button svg,
.sticky-button img {
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* WhatsApp ikonunu biraz daha belirgin yap */
.btn-green svg,
.btn-green img {
    width: 20px;
    height: 20px;
}

/* Hover */
.sticky-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Renkler */
.btn-orange { background-color: #d86833 !important; }
.btn-green { background-color: #82c95f !important; }
.btn-blue { background-color: #0b59e8 !important; }

/* Sosyal Medya Açılır Menü */
.social-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Kapanma Sorunu Çözümü: Buton ile menü arasına görünmez bir köprü kurar */
.social-dropdown::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    display: none;
}

.social-dropdown:hover::after {
    display: block;
}

.dropdown-content {
    position: absolute;
    bottom: calc(100% + 10px);
    background-color: rgba(34, 34, 34, 0.98);
    border-radius: 15px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 1000;
}

.social-dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    text-decoration: none;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Mobil için Düzenlemeler */
@media (max-width: 768px) {
    .decor-line { 
        display: none; 
    }

    .bar-content { 
        gap: 8px; 
    }

    .sticky-button { 
        padding: 10px 14px;
        font-size: 11px;
        gap: 5px;
    }

    .sticky-button svg,
    .sticky-button img {
        width: 17px;
        height: 17px;
    }

    .btn-green svg,
    .btn-green img {
        width: 20px;
        height: 20px;
    }
}/* End custom CSS */