/* Fixed CTA Bar - Renk Paletine Uygun */
.fixed-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    box-shadow: 0 -2px 8px rgba(107, 90, 69, 0.15);
    border-top: 1px solid rgba(212, 196, 168, 0.2);
}

/* Body padding for CTA bar */
body {
    padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
    body {
        padding-bottom: 45px;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding-bottom: 40px;
    }
}

.cta-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.cta-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cta-button span {
    white-space: nowrap;
}

.cta-whatsapp {
    background-color: var(--primary-color);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-whatsapp:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
}

.cta-phone {
    background-color: var(--primary-dark);
}

.cta-phone:hover {
    background-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Mobil görünüm için CTA bar */
@media screen and (max-width: 768px) {
    .desktop-cta-bar {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
    
    .cta-button {
        padding: 9px 12px;
        font-size: 11px;
        gap: 6px;
    }
    
    .cta-button svg {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 480px) {
    .cta-button {
        padding: 8px 10px;
        font-size: 10px;
        gap: 5px;
        letter-spacing: 0.3px;
    }
    
    .cta-button svg {
        width: 14px;
        height: 14px;
    }
}

/* Mobile Floating CTA Buttons - Dairesel Butonlar */
.mobile-cta-buttons {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 1000;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.mobile-cta-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-cta-btn svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.mobile-cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.mobile-cta-phone {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.mobile-cta-phone:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.mobile-cta-location {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
}

.mobile-cta-location:hover {
    background: linear-gradient(135deg, #EE5A6F 0%, #FF6B6B 100%);
}

.mobile-cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.mobile-cta-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

/* Mobil görünümde dairesel butonları göster */
@media screen and (max-width: 768px) {
    .mobile-cta-buttons {
        display: flex;
    }
    
    .mobile-cta-btn {
        width: 50px;
        height: 50px;
    }
    
    .mobile-cta-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 480px) {
    .mobile-cta-buttons {
        right: 12px;
        bottom: 15px;
        gap: 12px;
    }
    
    .mobile-cta-btn {
        width: 48px;
        height: 48px;
    }
    
    .mobile-cta-btn svg {
        width: 20px;
        height: 20px;
    }
}

