/* Floating Bar Styles */
.floating-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -250px;
    background: linear-gradient(135deg, #c08c6a 0%, #8b5a3c 100%);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 999;
    transition: transform 0.3s ease-in-out;
    margin: 0 15px 40px 15px;
    border-radius: 10px;
    width: calc(100% - 30px);
    text-align: center; 
    
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.floating-cta-bar.visible {
    transform: translateY(-130%);
}

.floating-cta-bar .cta-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.floating-cta-bar .cta-description {
    font-size: 14px;
    margin-bottom: 12px;
    color: #fff;
}

.floating-cta-bar .cta-button {
    display: inline-block;
    background: #fff;
    color: #8b5a3c;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    animation: pulse 2s infinite;
}

.floating-cta-bar .cta-button:hover {
    background-color: #f0f0f0;
    color: #8b5a3c;
    transform: translateY(-2px);
}

/* Mobil için görünür, masaüstü için gizli */
@media (min-width: 992px) {
    .floating-cta-bar {
        display: none;
    }
}

/* Kapatma butonu */
.floating-cta-bar .close-cta {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
} 

.floating-cta-bar .close-cta:hover {
    color: #fff;
} 