/* Modern Telefon Araması Butonu */
.search-float.phone-float {
    position: fixed;
    right: 30px;
    bottom: 170px;
    z-index: 1000;
}

.search-button.phone-button {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    width: 56px;
    height: 56px;
    justify-content: center;
    cursor: pointer;
    outline: none;
}

.search-button.phone-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.5);
    border-radius: 50px;
    width: auto;
    padding: 12px 20px;
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    color: white;
    text-decoration: none;
}

.search-button.phone-button:active {
    transform: translateY(-2px) scale(1.02);
}

.search-icon.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.search-button.phone-button:hover .search-icon.phone-icon {
    transform: rotate(15deg);
}

.search-text.phone-text {
    font-size: 16px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease, margin-left 0.3s ease;
    margin-left: 0;
}

.search-button.phone-button:hover .search-text.phone-text {
    max-width: 250px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .search-float.phone-float {
        right: 20px;
        bottom: 170px;
    }

    .search-button.phone-button {
        padding: 10px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
    }

    .search-text.phone-text {
        display: none;
    }

    .search-button.phone-button:hover {
        border-radius: 50%;
        width: 56px;
        height: 56px;
        padding: 10px;
    }

    .search-button.phone-button:hover .search-icon.phone-icon {
        transform: none;
    }
}

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 998;
}

/* Mobilde butonların pozisyonları */
@media (max-width: 768px) {
    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }

    .search-float.phone-float {
        right: 20px;
        bottom: 90px;
    }
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    width: 56px;
    height: 56px;
    justify-content: center;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    border-radius: 50px;
    width: auto;
    padding: 12px 20px;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-text {
    font-size: 16px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease;
}

.whatsapp-button:hover .whatsapp-text {
    max-width: 200px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 30px;
        bottom: 100px;
    }

    .whatsapp-button {
        padding: 10px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-button:hover {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        padding: 10px;
    }
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    max-width: 90%;
    width: 800px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-icon {
    font-size: 24px;
    color: var(--pbmit-global-color);
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.cookie-content a {
    color: var(--pbmit-global-color);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-accept {
    background: var(--pbmit-global-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: var(--pbmit-secondary-color);
}

@media (max-width: 576px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept {
        width: 100%;
        padding: 10px;
    }
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99;
}

.progress-wrap::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    color: var(--accent-color);
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    opacity: 0;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--accent-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* Arama Overlay Active State */
.pbmit-search-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pbmit-search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.left-call-hover{
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999999;
}

.left-call-hover-btn{
  display: flex;
  align-items: center;
  background: #0d6efd;
  border-radius: 50px;
  overflow: hidden;
  width: 52px; /* kapalı hali */
  height: 52px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: width .3s ease;
}

.left-call-hover-btn:hover{
  width: 165px; /* açılmış hali */
}

.left-call-hover-icon{
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.left-call-hover-text{
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  margin-left: 6px;
  transition: opacity .2s ease;
}

.left-call-hover-btn:hover .left-call-hover-text{
  opacity: 1;
}
