.elementor-46378 .elementor-element.elementor-element-dcfa6d4{--display:flex;}.elementor-46378 .elementor-element.elementor-element-91b94b9{--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;}/* Start custom CSS for container, class: .elementor-element-dcfa6d4 */header,
.site-header,
.elementor-location-header,
#masthead,
.main-header,
.top-bar,
.header-area {
    display: none !important;
}

body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-91b94b9 */.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;
    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;
}

.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; /* Boşluğu doldurur, farenin geçişini sağlar */
    display: none;
}

.social-dropdown:hover::after {
    display: block;
}

.dropdown-content {
    position: absolute;
    bottom: calc(100% + 10px); /* Butonun 10px üzerinde durur */
    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; }
}/* End custom CSS */